summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineInstr.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-12-25 13:45:50 +0000
committerBill Wendling <isanbard@gmail.com>2009-12-25 13:45:50 +0000
commitec030f2f01e28d74946c4163fbdaa523009a52ac (patch)
tree23d13dae9a32ca578692c58d59a6dade9d897019 /llvm/lib/CodeGen/MachineInstr.cpp
parent49fac47c83dfbae8d4da3b2888ca659a5279294d (diff)
downloadbcm5719-llvm-ec030f2f01e28d74946c4163fbdaa523009a52ac.tar.gz
bcm5719-llvm-ec030f2f01e28d74946c4163fbdaa523009a52ac.zip
Remove dead store.
llvm-svn: 92159
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineInstr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp
index f32e3e508a6..f919510525f 100644
--- a/llvm/lib/CodeGen/MachineInstr.cpp
+++ b/llvm/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 << " ...";
}
OpenPOWER on IntegriCloud