commit | f54f60f3cee6d07fb1bc41321e3d54a7e3011773 | [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 | d4fb534ffe1ba91da9c91fa4f9b0c5e1af023770 | |
parent | 87c7b09d8d7e7f04b720d298a7194c4473a8c524 [diff] [blame] |
remove blanks, and some code format llvm-svn: 151625
diff --git a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp index f806eae..2917a89 100644 --- a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/llvm/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); }