aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-08-17 23:23:07 +0000
committerJim Grosbach <grosbach@apple.com>2011-08-17 23:23:07 +0000
commit2f815c0b50acc506a7bdcdfb63966c40a0d2e71b (patch)
tree0491e1bf523df9778fe79cb500fb41a389f628dd
parent37f88c7812e4c284bde325e5af583889b6a80fc5 (diff)
Remove extraneous newline from operand print method. PR10569.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137900 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp b/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
index 30fa76ad70..961b0576b0 100644
--- a/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
+++ b/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
@@ -900,8 +900,8 @@ void ARMInstPrinter::printRotImmOperand(const MCInst *MI, unsigned OpNum,
O << ", ror #";
switch (Imm) {
default: assert (0 && "illegal ror immediate!");
- case 1: O << "8\n"; break;
- case 2: O << "16\n"; break;
- case 3: O << "24\n"; break;
+ case 1: O << "8"; break;
+ case 2: O << "16"; break;
+ case 3: O << "24"; break;
}
}