From: Jack Carter Date: Thu, 28 Jun 2012 20:46:26 +0000 (+0000) Subject: Changed the formatting sequence of a curly brace to X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f38ad8efd0f313a51307f700a2699ae57608ddd4;p=oota-llvm.git Changed the formatting sequence of a curly brace to the comment per code review feedback. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159376 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MipsAsmPrinter.cpp b/lib/Target/Mips/MipsAsmPrinter.cpp index 1c5bb1633be..14c4b966647 100644 --- a/lib/Target/Mips/MipsAsmPrinter.cpp +++ b/lib/Target/Mips/MipsAsmPrinter.cpp @@ -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();