summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-12-17 23:06:42 +0000
committerBob Wilson <bob.wilson@apple.com>2010-12-17 23:06:42 +0000
commita7dabbd2cf7dc8a60d588d6e440372f2b4efc85f (patch)
tree1b0f52fe334e33e8987423f34c05ec9c140e4288 /llvm
parentec3ff9c72756229a353fa18fdfea70c3e9a2ca8f (diff)
downloadbcm5719-llvm-a7dabbd2cf7dc8a60d588d6e440372f2b4efc85f.tar.gz
bcm5719-llvm-a7dabbd2cf7dc8a60d588d6e440372f2b4efc85f.zip
Avoid report_fatal_error in ARM's PrintAsmOperand method.
The standard error handling in AsmPrinter::EmitInlineAsm handles this much better, so just use it. llvm-svn: 122100
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/Target/ARM/ARMAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
index ae808914c6d..1c5997e9598 100644
--- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
+++ b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
@@ -286,7 +286,7 @@ bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
case 'Q':
case 'R':
case 'H':
- report_fatal_error("llvm does not support 'Q', 'R', and 'H' modifiers!");
+ // These modifiers are not yet supported.
return true;
}
}
OpenPOWER on IntegriCloud