Changed the formatting sequence of a curly brace to

the comment per code review feedback.

llvm-svn: 159376
This commit is contained in:
Jack Carter 2012-06-28 20:46:26 +00:00
parent b74220d64e
commit 27747b57f9
1 changed files with 2 additions and 2 deletions

View File

@ -323,8 +323,8 @@ bool MipsAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
return true;
O << MO.getImm() - 1;
return false;
case 'z': // $0 if zero, regular printing otherwise
{
case 'z': {
// $0 if zero, regular printing otherwise
if (MO.getType() != MachineOperand::MO_Immediate)
return true;
int64_t Val = MO.getImm();