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 36a5b10 commit fcb1b70Copy full SHA for fcb1b70
llvm/lib/MC/MCCodeEmitter.cpp
@@ -22,13 +22,13 @@ void MCCodeEmitter::reportUnsupportedInst(const MCInst &Inst) {
22
std::string Msg;
23
raw_string_ostream OS(Msg);
24
OS << "Unsupported instruction : " << Inst;
25
- report_fatal_error(Msg.c_str());
+ reportFatalInternalError(Msg.c_str());
26
}
27
28
void MCCodeEmitter::reportUnsupportedOperand(const MCInst &Inst,
29
unsigned OpNum) {
30
31
32
OS << "Unsupported instruction/operand : \"" << Inst << "\"[" << OpNum << "]";
33
34
0 commit comments