Skip to content
Snippets Groups Projects
Commit 6971be81 authored by Chris Lattner's avatar Chris Lattner
Browse files

Completely disable the pattern isel until it is more substantial.

llvm-svn: 15380
parent 70d2260e
No related branches found
No related tags found
Loading
...@@ -26,8 +26,12 @@ ...@@ -26,8 +26,12 @@
using namespace llvm; using namespace llvm;
namespace { namespace {
#if 0 // FIXME: This will be used in the future.
cl::opt<bool> NoPatternISel("disable-pattern-isel", cl::init(true), cl::opt<bool> NoPatternISel("disable-pattern-isel", cl::init(true),
cl::desc("Use the 'simple' X86 instruction selector")); cl::desc("Use the 'simple' X86 instruction selector"));
#else
static const bool NoPatternISel = true;
#endif
cl::opt<bool> NoSSAPeephole("disable-ssa-peephole", cl::init(true), cl::opt<bool> NoSSAPeephole("disable-ssa-peephole", cl::init(true),
cl::desc("Disable the ssa-based peephole optimizer " cl::desc("Disable the ssa-based peephole optimizer "
"(defaults to disabled)")); "(defaults to disabled)"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment