summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-05-27 23:45:31 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-05-27 23:45:31 +0000
commit12616727c71721f480f69026d88a58a067d89824 (patch)
treebc32ada6d897e499e7f02dcc87fd6c5081c2050b /lib/Target
parenta65850230af7f13d9111450f645886b968dea2a2 (diff)
downloadllvm-12616727c71721f480f69026d88a58a067d89824.tar.gz
llvm-12616727c71721f480f69026d88a58a067d89824.tar.bz2
llvm-12616727c71721f480f69026d88a58a067d89824.tar.xz
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')
-rw-r--r--lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
index fc73938002..a5a28692f1 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;
}
}