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 | ad2cf9dd63d15a8bcd7d34a379a1e983fd8c66f7 (patch) | |
tree | 33b50226d8bd630ca18f4220087fed59b81a2c5d /lib/CodeGen/MachineInstr.cpp | |
parent | ebc0c8cc6dc5716c554775fe0514fd3e4a4d3db9 (diff) |
Remove dead store from copy-pasto.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92158 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index e3b870927a..f32e3e508a 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/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 |