commit | ceebbcd5d8d0528abe14965dc9d4a9cb14f4b49c | [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 | a05064ed33e5bb5e4e1d098dad7dc6bc915bbe1a [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