Remove dead store.
[oota-llvm.git] / lib / CodeGen / MachineInstr.cpp
index f32e3e508a610b73dc16fe542b5ebb3a87460a82..f919510525f4aa1cfd434953b70a2ebc81e8d067 100644 (file)
@@ -1159,7 +1159,7 @@ void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const {
 
   // Briefly indicate whether any call clobbers were omitted.
   if (OmittedAnyCallClobbers) {
-    if (FirstOp) FirstOp = false; else OS << ",";
+    if (!FirstOp) OS << ",";
     OS << " ...";
   }