commit | bb481f882093fb738d2bb15610c79364bada5496 | [log] [tgz] |
---|---|---|
author | Jia Liu <proljc@gmail.com> | Tue Feb 28 07:46:26 2012 +0000 |
committer | Jia Liu <proljc@gmail.com> | Tue Feb 28 07:46:26 2012 +0000 |
tree | b7576c5dfdd780ee43fd00ca3fd5a76a608fa7bd | |
parent | ec52aaa12f57896fc806e849fa21a61603050ac4 [diff] [blame] |
remove blanks, and some code format git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151625 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp b/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp index f806eae..2917a89 100644 --- a/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
@@ -136,12 +136,12 @@ printRegName(O, Op.getReg()); return; } - + if (Op.isImm()) { O << Op.getImm(); return; } - + assert(Op.isExpr() && "unknown operand kind in printOperand"); printExpr(Op.getExpr(), O); }