forked from OSchip/llvm-project
make -view-isel-dags print after the 'ShrinkDemandedOps' pass.
llvm-svn: 98509
This commit is contained in:
parent
5049f23592
commit
f1ed59a418
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue