diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-12-25 13:44:36 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-12-25 13:44:36 +0000 |
commit | 49fac47c83dfbae8d4da3b2888ca659a5279294d (patch) | |
tree | db6a16a7dcab42ec4b6d7b71007bd73aaee5a44d /llvm/lib | |
parent | 8d1f801a013d047252588da98808b1af7e60a9e3 (diff) | |
download | bcm5719-llvm-49fac47c83dfbae8d4da3b2888ca659a5279294d.tar.gz bcm5719-llvm-49fac47c83dfbae8d4da3b2888ca659a5279294d.zip |
Remove dead store from copy-pasto.
llvm-svn: 92158
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index e3b870927a8..f32e3e508a6 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -1177,7 +1177,7 @@ void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const { } if (!debugLoc.isUnknown() && MF) { - if (!HaveSemi) OS << ";"; HaveSemi = true; + if (!HaveSemi) OS << ";"; // TODO: print InlinedAtLoc information |