diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-04-09 16:24:20 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-04-09 16:24:20 +0000 |
| commit | 1a44855f8f4a5f0f56d3754c222d587800851269 (patch) | |
| tree | 619fd6a0db6279fb4b33f17cf140cf3c2589c7a5 /llvm/lib | |
| parent | 0b1681bce1a4ba1dae71f4271c7c627a2552bf3a (diff) | |
| download | bcm5719-llvm-1a44855f8f4a5f0f56d3754c222d587800851269.tar.gz bcm5719-llvm-1a44855f8f4a5f0f56d3754c222d587800851269.zip | |
there is no need to remove this instruction, linscan does it already as it
removes noop moves.
llvm-svn: 21183
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 580895dd864..c0d1b2a89f5 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -199,11 +199,6 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { } } - // If we inserted a placeholder instruction at the entry of the block, remove - // it now. - if (fn.livein_begin() != fn.livein_end()) - fn.begin()->erase(fn.begin()->begin()); - DEBUG(dump()); return true; } |

