mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
80 column fix
llvm-svn: 115149
This commit is contained in:
parent
b181166ffc
commit
37fbea8ac9
@ -339,7 +339,9 @@ bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
|
||||
default: return true; // Unknown modifier.
|
||||
case 'a': // Print as a memory address.
|
||||
if (MI->getOperand(OpNum).isReg()) {
|
||||
O << "[" << ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg()) << "]";
|
||||
O << "["
|
||||
<< ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg())
|
||||
<< "]";
|
||||
return false;
|
||||
}
|
||||
// Fallthrough
|
||||
|
Loading…
Reference in New Issue
Block a user