Remove dead store.

llvm-svn: 92159
This commit is contained in:
Bill Wendling 2009-12-25 13:45:50 +00:00
parent 49fac47c83
commit ec030f2f01
1 changed files with 1 additions and 1 deletions

View 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 << " ...";
}