Use report_fatal_error, not llvm_unreachable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104899 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2010-05-27 23:45:31 +00:00
parent a65850230a
commit 12616727c7

View File

@ -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;
}
}