diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-05-27 23:45:31 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-05-27 23:45:31 +0000 |
commit | 12616727c71721f480f69026d88a58a067d89824 (patch) | |
tree | bc32ada6d897e499e7f02dcc87fd6c5081c2050b /lib/Target/ARM/AsmPrinter | |
parent | a65850230af7f13d9111450f645886b968dea2a2 (diff) | |
download | external_llvm-12616727c71721f480f69026d88a58a067d89824.zip external_llvm-12616727c71721f480f69026d88a58a067d89824.tar.gz external_llvm-12616727c71721f480f69026d88a58a067d89824.tar.bz2 |
Use report_fatal_error, not llvm_unreachable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmPrinter')
-rw-r--r-- | lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index fc73938..a5a2869 100644 --- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp @@ -1066,7 +1066,7 @@ bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum, case 'Q': case 'R': case 'H': - llvm_unreachable("llvm does not support 'Q', 'R', and 'H' modifiers!"); + report_fatal_error("llvm does not support 'Q', 'R', and 'H' modifiers!"); return true; } } |