Remove extraneous newline from operand print method. PR10569.

llvm-svn: 137900
This commit is contained in:
Jim Grosbach 2011-08-17 23:23:07 +00:00
parent 525cfe7d28
commit 50aafeaa2c
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}