mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 09:21:13 +00:00
Enable pattern isel by default
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21898 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3becf2026b
commit
6649418598
@ -110,8 +110,8 @@ bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM,
|
||||
// Make sure that no unreachable blocks are instruction selected.
|
||||
PM.add(createUnreachableBlockEliminationPass());
|
||||
|
||||
// Default to simple ISel
|
||||
if (PatternISelTriState != 1)
|
||||
// Default to pattern ISel
|
||||
if (PatternISelTriState == 0)
|
||||
PM.add(createX86SimpleInstructionSelector(*this));
|
||||
else
|
||||
PM.add(createX86PatternInstructionSelector(*this));
|
||||
@ -169,8 +169,8 @@ void X86JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
||||
// Make sure that no unreachable blocks are instruction selected.
|
||||
PM.add(createUnreachableBlockEliminationPass());
|
||||
|
||||
// Default to simple ISel
|
||||
if (PatternISelTriState != 1)
|
||||
// Default to pattern ISel
|
||||
if (PatternISelTriState == 0)
|
||||
PM.add(createX86SimpleInstructionSelector(TM));
|
||||
else
|
||||
PM.add(createX86PatternInstructionSelector(TM));
|
||||
|
Loading…
Reference in New Issue
Block a user