diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-15 00:40:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-15 00:40:23 +0000 |
commit | dbdbf0ce2eef7b6585397121f56d3845e04866d1 (patch) | |
tree | 606652b7a33538e0ffa5c4435fe175f3aa33c5d6 /lib/Target/X86/X86TargetMachine.cpp | |
parent | 27ecef510f785bc9345e6ddf058cd4f45e05bc4f (diff) |
Separate X86ISelLowering stuff out from the X86ISelPattern.cpp file. Patch
contributed by Evan Cheng.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r-- | lib/Target/X86/X86TargetMachine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp index 3d33cc2870..4862a230cb 100644 --- a/lib/Target/X86/X86TargetMachine.cpp +++ b/lib/Target/X86/X86TargetMachine.cpp @@ -124,7 +124,7 @@ bool X86TargetMachine::addPassesToEmitFile(PassManager &PM, std::ostream &Out, PM.add(createUnreachableBlockEliminationPass()); // Install an instruction selector. - PM.add(createX86PatternInstructionSelector(*this)); + PM.add(createX86ISelPattern(*this)); // Run optional SSA-based machine code optimizations next... if (!NoSSAPeephole) @@ -192,7 +192,7 @@ void X86JITInfo::addPassesToJITCompile(FunctionPassManager &PM) { PM.add(createUnreachableBlockEliminationPass()); // Install an instruction selector. - PM.add(createX86PatternInstructionSelector(TM)); + PM.add(createX86ISelPattern(TM)); // Run optional SSA-based machine code optimizations next... if (!NoSSAPeephole) |