We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cad02c commit 33c8f67Copy full SHA for 33c8f67
llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp
@@ -53,10 +53,10 @@ namespace RISCV {
53
54
// Report an error but don't ask the user to report a bug.
55
[[noreturn]] static void reportError(const char *Reason) {
56
- report_fatal_error(Reason, false);
+ report_fatal_error(Reason, /*gen_crash_diag=*/false);
57
}
58
[[noreturn]] static void reportError(Error Err) {
59
- report_fatal_error(std::move(Err), false);
+ report_fatal_error(std::move(Err), /*gen_crash_diag=*/false);
60
61
62
namespace RISCVABI {
0 commit comments