diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-10-12 16:34:37 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-10-12 16:34:37 +0000 |
commit | bc9c80240bc922cffb02cae390181bf42ad231e5 (patch) | |
tree | c91e6ad6083416e42f1343b779ced1755a132572 | |
parent | 9e15d658c99c3f0717cb83cc2bd2aa29abdbcdbb (diff) |
Tidy up. Formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141780 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp b/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp index d637929b29..3a90726541 100644 --- a/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp +++ b/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp @@ -711,12 +711,12 @@ void ARMInstPrinter::printNoHashImmediate(const MCInst *MI, unsigned OpNum, } void ARMInstPrinter::printPImmediate(const MCInst *MI, unsigned OpNum, - raw_ostream &O) { + raw_ostream &O) { O << "p" << MI->getOperand(OpNum).getImm(); } void ARMInstPrinter::printCImmediate(const MCInst *MI, unsigned OpNum, - raw_ostream &O) { + raw_ostream &O) { O << "c" << MI->getOperand(OpNum).getImm(); } |