commit | 164558e59c2a321bf670e31a7bdde0d38d79bb67 | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Fri Dec 25 13:45:50 2009 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Fri Dec 25 13:45:50 2009 +0000 |
tree | 8764de648a98144d818df833a9bd7fb701f2ec1c | |
parent | ad2cf9dd63d15a8bcd7d34a379a1e983fd8c66f7 [diff] [blame] |
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 f32e3e5..f919510 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp
@@ -1159,7 +1159,7 @@ // Briefly indicate whether any call clobbers were omitted. if (OmittedAnyCallClobbers) { - if (FirstOp) FirstOp = false; else OS << ","; + if (!FirstOp) OS << ","; OS << " ..."; }