diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-14 20:31:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-14 20:31:06 +0000 |
commit | b28e691657c119feea1dd114c461014fd83fd242 (patch) | |
tree | 63287505b68c0d8d5a0d02ad4ee7d88efedaa377 /llvm/lib/Target/ARM/ARMAsmPrinter.cpp | |
parent | 0dcd800b228f9e644bc007568a3bc8b8b2aa956d (diff) | |
download | bcm5719-llvm-b28e691657c119feea1dd114c461014fd83fd242.tar.gz bcm5719-llvm-b28e691657c119feea1dd114c461014fd83fd242.zip |
simplify and tidy up
llvm-svn: 119066
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAsmPrinter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp index 73d3e1caf2e..2d5b4c41c4c 100644 --- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/llvm/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; |