Add an extra line to conform with preferred style.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2009-08-19 23:44:01 +00:00
parent ce4eb39bb4
commit 231843ed16

View File

@ -624,7 +624,8 @@ bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
if (MO.isImm()) {
O << MO.getImm();
return false;
} else if (MO.isReg()) {
}
if (MO.isReg()) {
O << '(';
printOperand(MI, OpNo);
O << ')';