remove blanks, and some code format
[oota-llvm.git] / lib / Target / Mips / InstPrinter / MipsInstPrinter.cpp
index f806eae5292886e41df862e140c4cc5bde708eaa..2917a89a2261976f975678550052f23f8e3df3bf 100644 (file)
@@ -136,12 +136,12 @@ void MipsInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
     printRegName(O, Op.getReg());
     return;
   }
-  
+
   if (Op.isImm()) {
     O << Op.getImm();
     return;
   }
-  
+
   assert(Op.isExpr() && "unknown operand kind in printOperand");
   printExpr(Op.getExpr(), O);
 }