From: Evan Cheng Date: Thu, 27 May 2010 23:45:31 +0000 (+0000) Subject: Use report_fatal_error, not llvm_unreachable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=12616727c71721f480f69026d88a58a067d89824;p=oota-llvm.git Use report_fatal_error, not llvm_unreachable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104899 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index fc73938002d..a5a28692f11 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; } }