diff options
Diffstat (limited to 'lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 642cd9c930..31bb8f2d7f 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<MCConstantExpr>(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)); |