mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-16 07:38:43 +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.
|
default: return true; // Unknown modifier.
|
||||||
case 'a': // Print as a memory address.
|
case 'a': // Print as a memory address.
|
||||||
if (MI->getOperand(OpNum).isReg()) {
|
if (MI->getOperand(OpNum).isReg()) {
|
||||||
O << "[" << ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg()) << "]";
|
O << "["
|
||||||
|
<< ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg())
|
||||||
|
<< "]";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Fallthrough
|
// Fallthrough
|
||||||
|
Loading…
x
Reference in New Issue
Block a user