[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Evan Cheng evan.cheng at apple.com
Fri Apr 28 11:54:26 PDT 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGISel.cpp updated: 1.230 -> 1.231
---
Log message:

Remove the temporary option: -no-isel-fold-inflight


---
Diffs of the changes:  (+0 -11)

 SelectionDAGISel.cpp |   11 -----------
 1 files changed, 11 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.230 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.231
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.230	Fri Apr 28 00:25:15 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp	Fri Apr 28 13:54:11 2006
@@ -58,14 +58,6 @@
 static const bool ViewISelDAGs = 0, ViewSchedDAGs = 0;
 #endif
 
-namespace {
-static cl::opt<bool>
-NoFoldNodeInFlight(
-   "no-isel-fold-inflight",
-   cl::Hidden,
-   cl::desc("Do not attempt to fold a node even if it is being selected"));
-}
-
 // Scheduling heuristics
 enum SchedHeuristics {
   defaultScheduling,      // Let the target specify its preference.
@@ -3177,9 +3169,6 @@
   
   if (ViewISelDAGs) DAG.viewGraph();
 
-  // TEMPORARY.
-  FoldNodeInFlight = !NoFoldNodeInFlight;
-
   // Third, instruction select all of the operations to machine code, adding the
   // code to the MachineBasicBlock.
   InstructionSelectBasicBlock(DAG);






More information about the llvm-commits mailing list