From: Bill Wendling Date: Fri, 25 Dec 2009 13:45:50 +0000 (+0000) Subject: Remove dead store. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=164558e59c2a321bf670e31a7bdde0d38d79bb67;p=oota-llvm.git Remove dead store. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92159 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index f32e3e508a6..f919510525f 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -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 << " ..."; }