aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMAsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-14 20:31:06 +0000
committerChris Lattner <sabre@nondot.org>2010-11-14 20:31:06 +0000
commit112f2390e19774a54c2dd50391b99fb617da0973 (patch)
treee91929ed61252788c361e5e6120e8d5014d37689 /lib/Target/ARM/ARMAsmPrinter.cpp
parentfdb2ded765316ee2ee2f796b0e2befa2c23acd1d (diff)
downloadexternal_llvm-112f2390e19774a54c2dd50391b99fb617da0973.zip
external_llvm-112f2390e19774a54c2dd50391b99fb617da0973.tar.gz
external_llvm-112f2390e19774a54c2dd50391b99fb617da0973.tar.bz2
simplify and tidy up
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119066 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r--lib/Target/ARM/ARMAsmPrinter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMAsmPrinter.cpp b/lib/Target/ARM/ARMAsmPrinter.cpp
index 73d3e1c..2d5b4c4 100644
--- a/lib/Target/ARM/ARMAsmPrinter.cpp
+++ b/lib/Target/ARM/ARMAsmPrinter.cpp
@@ -802,9 +802,8 @@ void ARMAsmPrinter::PrintDebugValueComment(const MachineInstr *MI,
void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
ARMMCInstLower MCInstLowering(OutContext, *Mang, *this);
switch (MI->getOpcode()) {
- case ARM::t2MOVi32imm:
- assert(0 && "Should be lowered by thumb2it pass");
default: break;
+ case ARM::t2MOVi32imm: assert(0 && "Should be lowered by thumb2it pass");
case ARM::DBG_VALUE: {
if (isVerbose() && OutStreamer.hasRawTextSupport()) {
SmallString<128> TmpStr;