[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Fri Jan 13 10:50:00 PST 2006



Changes in directory llvm/lib/Target/Alpha:

AlphaTargetMachine.cpp updated: 1.19 -> 1.20
---
Log message:

make DAG isel the default

---
Diffs of the changes:  (+3 -3)

 AlphaTargetMachine.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp
diff -u llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.19 llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.20
--- llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.19	Fri Nov 18 07:57:03 2005
+++ llvm/lib/Target/Alpha/AlphaTargetMachine.cpp	Fri Jan 13 12:49:47 2006
@@ -29,8 +29,8 @@
 }
 
 namespace llvm {
-  cl::opt<bool> EnableAlphaDAG("enable-dag-isel-for-alpha",
-                             cl::desc("Enable DAG ISEL for Alpha (beta option!)"),
+  cl::opt<bool> DisableAlphaDAG("disable-alpha-dag-isel",
+                             cl::desc("Disable DAG ISEL for Alpha"),
                              cl::Hidden);
 }
 
@@ -94,7 +94,7 @@
   // Make sure that no unreachable blocks are instruction selected.
   PM.add(createUnreachableBlockEliminationPass());
 
-  if (EnableAlphaDAG)
+  if (!DisableAlphaDAG)
     PM.add(createAlphaISelDag(*this));
   else
     PM.add(createAlphaPatternInstructionSelector(*this));






More information about the llvm-commits mailing list