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 | 5f3b96de192d111dbf648502f7eb6e670f7d57f7 (patch) | |
tree | bc32ada6d897e499e7f02dcc87fd6c5081c2050b /lib/Target/ARM/AsmPrinter | |
parent | ae810412a11fc5c29b2e0c452bccf28d41263528 (diff) | |
download | external_llvm-5f3b96de192d111dbf648502f7eb6e670f7d57f7.zip external_llvm-5f3b96de192d111dbf648502f7eb6e670f7d57f7.tar.gz external_llvm-5f3b96de192d111dbf648502f7eb6e670f7d57f7.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; } } |