commit | ad2cf9dd63d15a8bcd7d34a379a1e983fd8c66f7 | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Fri Dec 25 13:44:36 2009 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Fri Dec 25 13:44:36 2009 +0000 |
tree | 33b50226d8bd630ca18f4220087fed59b81a2c5d | |
parent | ebc0c8cc6dc5716c554775fe0514fd3e4a4d3db9 [diff] [blame] |
Remove dead store from copy-pasto. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92158 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index e3b8709..f32e3e5 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp
@@ -1177,7 +1177,7 @@ } if (!debugLoc.isUnknown() && MF) { - if (!HaveSemi) OS << ";"; HaveSemi = true; + if (!HaveSemi) OS << ";"; // TODO: print InlinedAtLoc information