diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-31 22:03:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-31 22:03:46 +0000 |
commit | 08bde1870aede8a3f9eeaf9171960a0fc73f1887 (patch) | |
tree | 4bca461b6ae14e1596ca9e9562df3dd055cbae59 /lib/Target/X86/X86TargetMachine.cpp | |
parent | 352eb48f8e23b0758877d3ae8d9f37533302b7f8 (diff) |
The X86 backend no longer needs the select lowering pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12578 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r-- | lib/Target/X86/X86TargetMachine.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp index dcd265ef80..31c5e578ea 100644 --- a/lib/Target/X86/X86TargetMachine.cpp +++ b/lib/Target/X86/X86TargetMachine.cpp @@ -67,9 +67,6 @@ bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM, // FIXME: Implement the switch instruction in the instruction selector! PM.add(createLowerSwitchPass()); - // FIXME: Add support for the select instruction natively. - PM.add(createLowerSelectPass(true)); - if (NoPatternISel) PM.add(createX86SimpleInstructionSelector(*this)); else @@ -127,9 +124,6 @@ void X86JITInfo::addPassesToJITCompile(FunctionPassManager &PM) { // FIXME: Implement the switch instruction in the instruction selector! PM.add(createLowerSwitchPass()); - // FIXME: Add support for the select instruction natively. - PM.add(createLowerSelectPass(true)); - if (NoPatternISel) PM.add(createX86SimpleInstructionSelector(TM)); else |