forked from OSchip/llvm-project
Do run ComputeLiveOutVRegInfo with -fast.
llvm-svn: 52975
This commit is contained in:
parent
2965f03545
commit
33696cd9cf
|
@ -5347,7 +5347,7 @@ void SelectionDAGISel::CodeGenAndEmitDAG(SelectionDAG &DAG) {
|
||||||
|
|
||||||
if (ViewISelDAGs) DAG.viewGraph();
|
if (ViewISelDAGs) DAG.viewGraph();
|
||||||
|
|
||||||
if (EnableValueProp) // FIXME: Only do this if !fast.
|
if (!FastISel && EnableValueProp)
|
||||||
ComputeLiveOutVRegInfo(DAG);
|
ComputeLiveOutVRegInfo(DAG);
|
||||||
|
|
||||||
// Third, instruction select all of the operations to machine code, adding the
|
// Third, instruction select all of the operations to machine code, adding the
|
||||||
|
|
Loading…
Reference in New Issue