mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-09 05:47:13 +00:00
fix edit-o
llvm-svn: 73824
This commit is contained in:
parent
3ffae2f77e
commit
b0324ab35a
@ -380,7 +380,8 @@ void X86ATTAsmPrinter::printLeaMemReference(const MCInst *MI, unsigned Op) {
|
||||
if (IndexReg.getReg()) {
|
||||
O << ',';
|
||||
printOperand(MI, Op+2);
|
||||
if (MI->getOperand(Op+1).getImm() != 1)
|
||||
unsigned ScaleVal = MI->getOperand(Op+1).getImm();
|
||||
if (ScaleVal != 1)
|
||||
O << ',' << ScaleVal;
|
||||
}
|
||||
O << ')';
|
||||
|
Loading…
x
Reference in New Issue
Block a user