Skip to content

Commit

Permalink
ARM: whitespace
Browse files Browse the repository at this point in the history
Remove some whitespace.  NFC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209079 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
compnerd committed May 17, 2014
1 parent c86235f commit a53c765
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Target/ARM/AsmParser/ARMAsmParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3021,12 +3021,12 @@ int ARMAsmParser::tryParseShiftRegister(
EndLoc = Parser.getTok().getEndLoc();
ShiftReg = tryParseRegister();
if (ShiftReg == -1) {
Error (L, "expected immediate or register in shift operand");
Error(L, "expected immediate or register in shift operand");
return -1;
}
} else {
Error (Parser.getTok().getLoc(),
"expected immediate or register in shift operand");
Error(Parser.getTok().getLoc(),
"expected immediate or register in shift operand");
return -1;
}
}
Expand Down

0 comments on commit a53c765

Please sign in to comment.