Changed the formatting sequence of a curly brace to
the comment per code review feedback.
llvm-svn: 159376
diff --git a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
index 1c5bb16..14c4b96 100644
--- a/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
+++ b/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
@@ -323,8 +323,8 @@
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();