forked from OSchip/llvm-project
Changed the formatting sequence of a curly brace to
the comment per code review feedback. llvm-svn: 159376
This commit is contained in:
parent
b74220d64e
commit
27747b57f9
|
@ -323,8 +323,8 @@ bool MipsAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
|
||||||
return true;
|
return true;
|
||||||
O << MO.getImm() - 1;
|
O << MO.getImm() - 1;
|
||||||
return false;
|
return false;
|
||||||
case 'z': // $0 if zero, regular printing otherwise
|
case 'z': {
|
||||||
{
|
// $0 if zero, regular printing otherwise
|
||||||
if (MO.getType() != MachineOperand::MO_Immediate)
|
if (MO.getType() != MachineOperand::MO_Immediate)
|
||||||
return true;
|
return true;
|
||||||
int64_t Val = MO.getImm();
|
int64_t Val = MO.getImm();
|
||||||
|
|
Loading…
Reference in New Issue