diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-03-14 19:27:55 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-03-14 19:27:55 +0000 |
| commit | f1ed59a4186b2c585ee11be8de7311abeaddddb6 (patch) | |
| tree | fdc393c84e22dc3ced3581cb1b0da42e39e55fd0 /llvm/lib/CodeGen/SelectionDAG | |
| parent | 5049f235929d289462762f0e1daf72ffd28fd28c (diff) | |
| download | bcm5719-llvm-f1ed59a4186b2c585ee11be8de7311abeaddddb6.tar.gz bcm5719-llvm-f1ed59a4186b2c585ee11be8de7311abeaddddb6.zip | |
make -view-isel-dags print after the 'ShrinkDemandedOps' pass.
llvm-svn: 98509
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index d91d8bdeceb..2fa869f1b80 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -715,13 +715,13 @@ void SelectionDAGISel::CodeGenAndEmitDAG() { DEBUG(dbgs() << "Optimized legalized selection DAG:\n"); DEBUG(CurDAG->dump()); - if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName); - if (OptLevel != CodeGenOpt::None) { ShrinkDemandedOps(); ComputeLiveOutVRegInfo(); } + if (ViewISelDAGs) CurDAG->viewGraph("isel input for " + BlockName); + // Third, instruction select all of the operations to machine code, adding the // code to the MachineBasicBlock. if (TimePassesIsEnabled) { |

