diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-10-30 12:59:16 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-10-30 12:59:16 +0000 |
commit | 4aaf59d8ed5e565632314a1eeb7cf5a1fe1fdbe0 (patch) | |
tree | 6281927ce2dc55cc038def8bc862f0bfe2b29d0c /lib | |
parent | 16c3b647eb100fe404ee65f106d563ddef6c74b7 (diff) |
Tidy up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-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)); |