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

Nate Begeman natebegeman at mac.com
Thu Aug 18 16:53:28 PDT 2005



Changes in directory llvm/lib/Target:

TargetMachine.cpp updated: 1.40 -> 1.41
---
Log message:

Remove the X86 and PowerPC Simple instruction selectors; their time has
passed.


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

 TargetMachine.cpp |    5 -----
 1 files changed, 5 deletions(-)


Index: llvm/lib/Target/TargetMachine.cpp
diff -u llvm/lib/Target/TargetMachine.cpp:1.40 llvm/lib/Target/TargetMachine.cpp:1.41
--- llvm/lib/Target/TargetMachine.cpp:1.40	Wed Jul  6 13:59:03 2005
+++ llvm/lib/Target/TargetMachine.cpp	Thu Aug 18 18:53:15 2005
@@ -25,7 +25,6 @@
   bool PrintMachineCode;
   bool NoFramePointerElim;
   bool NoExcessFPPrecision;
-  int  PatternISelTriState;
   bool UnsafeFPMath;
   bool PICEnabled;
 };
@@ -44,10 +43,6 @@
                cl::desc("Disable optimizations that may increase FP precision"),
                cl::location(NoExcessFPPrecision),
                cl::init(false));
-  cl::opt<int, true> PatternISel("enable-pattern-isel",
-                    cl::desc("Turn the pattern ISel off(0), on(1), default(2)"),
-                    cl::location(PatternISelTriState),
-                    cl::init(2));
   cl::opt<bool, true>
   EnableUnsafeFPMath("enable-unsafe-fp-math",
                cl::desc("Enable optimizations that may decrease FP precision"),






More information about the llvm-commits mailing list