diff options
author | Nate Begeman <natebegeman@mac.com> | 2005-08-18 23:53:15 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2005-08-18 23:53:15 +0000 |
commit | be1f314a477dbc9390ee3bfa0db2ae3c343023c0 (patch) | |
tree | 1176b92ee6d08c231b0d2f57296c5a3553cee36d /llvm/lib/Target/TargetMachine.cpp | |
parent | 17727bad02b1350894384b18493a1660440951ef (diff) | |
download | bcm5719-llvm-be1f314a477dbc9390ee3bfa0db2ae3c343023c0.tar.gz bcm5719-llvm-be1f314a477dbc9390ee3bfa0db2ae3c343023c0.zip |
Remove the X86 and PowerPC Simple instruction selectors; their time has
passed.
llvm-svn: 22886
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index 90f10c1fccb..82759e8280c 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/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"), |