Changed the formatting sequence of a curly brace to
[oota-llvm.git] / lib / Target / Mips / MipsAsmPrinter.cpp
index 1c5bb1633be32c7aa0d32124a2df128c55aaf7cf..14c4b966647fc04f630c13b6252a4d5b830c0c47 100644 (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();