aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-11-29 23:18:01 +0000
committerJim Grosbach <grosbach@apple.com>2010-11-29 23:18:01 +0000
commit03f44a04e63ff77af12df33e10ffdc473609dfe2 (patch)
tree7eae8c6f471c0ca03b966c364dda69f15f8179eb
parentcd3c7cb9159bf80e6847c6d3c182ee4ae5e02281 (diff)
downloadexternal_llvm-03f44a04e63ff77af12df33e10ffdc473609dfe2.zip
external_llvm-03f44a04e63ff77af12df33e10ffdc473609dfe2.tar.gz
external_llvm-03f44a04e63ff77af12df33e10ffdc473609dfe2.tar.bz2
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120344 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/AsmParser/ARMAsmParser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index 7c34b58..2e7342d 100644
--- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -521,7 +521,7 @@ ParseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
SMLoc E = RCurlyTok.getLoc();
Parser.Lex(); // Eat right curly brace token.
-
+
// Verify the register list.
SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
RI = Registers.begin(), RE = Registers.end();
@@ -605,7 +605,7 @@ ParseMemory(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
E = RBracTok.getLoc();
Parser.Lex(); // Eat right bracket token.
-
+
const AsmToken &ExclaimTok = Parser.getTok();
ARMOperand *WBOp = 0;
if (ExclaimTok.is(AsmToken::Exclaim)) {
@@ -639,7 +639,7 @@ ParseMemory(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
const MCExpr *Offset = 0;
const AsmToken &NextTok = Parser.getTok();
-
+
if (NextTok.isNot(AsmToken::EndOfStatement)) {
Postindexed = true;
Writeback = true;