mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-06 03:38:24 +00:00
80 column fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115149 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a4c27248b5
commit
2f24c4ece0
@ -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