aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/TargetMachine.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-08-18 23:53:15 +0000
committerNate Begeman <natebegeman@mac.com>2005-08-18 23:53:15 +0000
commit73bfa7152481620d60bf63d5397dfe35bbc9c098 (patch)
tree129c67f7b6aed90a90140376213d51644e89eb8d /lib/Target/TargetMachine.cpp
parentcfbf96aa9c3bd317548f72e022ba28a40353f95a (diff)
downloadexternal_llvm-73bfa7152481620d60bf63d5397dfe35bbc9c098.zip
external_llvm-73bfa7152481620d60bf63d5397dfe35bbc9c098.tar.gz
external_llvm-73bfa7152481620d60bf63d5397dfe35bbc9c098.tar.bz2
Remove the X86 and PowerPC Simple instruction selectors; their time has
passed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
-rw-r--r--lib/Target/TargetMachine.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp
index 90f10c1..82759e8 100644
--- a/lib/Target/TargetMachine.cpp
+++ b/lib/Target/TargetMachine.cpp
@@ -25,7 +25,6 @@ namespace llvm {
bool PrintMachineCode;
bool NoFramePointerElim;
bool NoExcessFPPrecision;
- int PatternISelTriState;
bool UnsafeFPMath;
bool PICEnabled;
};
@@ -44,10 +43,6 @@ namespace {
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"),