diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2011-07-08 22:49:55 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2011-07-08 22:49:55 +0000 |
| commit | 45543ba4e837ad2a0bbcb19c9c6b67b1e16b30aa (patch) | |
| tree | 2a3ddacb2d7e503f79715fbfebc29eaf49526c06 /llvm | |
| parent | 15bc70f765f1f4afeffab2c8d74333779386d6ed (diff) | |
| download | bcm5719-llvm-45543ba4e837ad2a0bbcb19c9c6b67b1e16b30aa.tar.gz bcm5719-llvm-45543ba4e837ad2a0bbcb19c9c6b67b1e16b30aa.zip | |
Fix indentation.
llvm-svn: 134764
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 58ffe32333e..f927abbedaa 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -2050,7 +2050,7 @@ MatchAndEmitInstruction(SMLoc IDLoc, // that updates the condition codes if it ends in 's'. So see if the // mnemonic ends in 's' and if so try removing the 's' and adding a CCOut // operand with a value of CPSR. - else if(MatchResult == Match_MnemonicFail) { + else if (MatchResult == Match_MnemonicFail) { // Get the instruction mnemonic, which is the first token. StringRef Mnemonic = ((ARMOperand*)Operands[0])->getToken(); if (Mnemonic.substr(Mnemonic.size()-1) == "s") { @@ -2242,7 +2242,7 @@ bool ARMAsmParser::ParseDirectiveCode(SMLoc L) { } else { if (isThumb()) SwitchMode(); getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32); - } + } return false; } |

