[llvm-commits] [llvm] r52975 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Evan Cheng evan.cheng at apple.com
Tue Jul 1 11:15:04 PDT 2008


Author: evancheng
Date: Tue Jul  1 13:15:04 2008
New Revision: 52975

URL: http://llvm.org/viewvc/llvm-project?rev=52975&view=rev
Log:
Do run ComputeLiveOutVRegInfo with -fast.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp?rev=52975&r1=52974&r2=52975&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Tue Jul  1 13:15:04 2008
@@ -5347,7 +5347,7 @@
 
   if (ViewISelDAGs) DAG.viewGraph();
   
-  if (EnableValueProp)  // FIXME: Only do this if !fast.
+  if (!FastISel && EnableValueProp)
     ComputeLiveOutVRegInfo(DAG);
 
   // Third, instruction select all of the operations to machine code, adding the





More information about the llvm-commits mailing list