From: Jim Grosbach Date: Sat, 30 Oct 2010 12:59:16 +0000 (+0000) Subject: Tidy up. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4aaf59d8ed5e565632314a1eeb7cf5a1fe1fdbe0;p=oota-llvm.git Tidy up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117782 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 642cd9c9307..31bb8f2d7fa 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -260,7 +260,7 @@ public: // the difference? if (Mem.Offset) { const MCConstantExpr *CE = dyn_cast(Mem.Offset); - assert (CE && "non-constant mode 5 offset operand!"); + assert(CE && "non-constant mode 5 offset operand!"); // The MCInst offset operand doesn't include the low two bits (like // the instruction encoding). Inst.addOperand(MCOperand::CreateImm(CE->getValue() / 4));