We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the warning generated from:
llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Lines 94 to 98 in 4ed543d
doesn't include the module name, which makes it hard to find which file error was coming from?
It might be okay with non-lto + non-parallel builds but it becomes hard to debug the problem otherwise.
Context: #69780 (comment)
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-backend-risc-v
Author: AdityaK (hiraditya)
Sorry, something went wrong.
By the time we get here there should only be one Module. Do you want the Function name?
Given where the error is, it's impossible to get the function name. We would need to do it in getSubtargetImpl in RISCVTargetMachine I think.
The function name is even better. Backtrace from within gdb tells me that Function is available only two levels up.
No branches or pull requests
the warning generated from:
llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Lines 94 to 98 in 4ed543d
doesn't include the module name, which makes it hard to find which file error was coming from?
It might be okay with non-lto + non-parallel builds but it becomes hard to debug the problem otherwise.
Context: #69780 (comment)
The text was updated successfully, but these errors were encountered: