Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
6971be81
Commit
6971be81
authored
20 years ago
by
Chris Lattner
Browse files
Options
Downloads
Patches
Plain Diff
Completely disable the pattern isel until it is more substantial.
llvm-svn: 15380
parent
70d2260e
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/lib/Target/X86/X86TargetMachine.cpp
+4
-0
4 additions, 0 deletions
llvm/lib/Target/X86/X86TargetMachine.cpp
with
4 additions
and
0 deletions
llvm/lib/Target/X86/X86TargetMachine.cpp
+
4
−
0
View file @
6971be81
...
@@ -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)"
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment