diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-05 06:05:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-05 06:05:26 +0000 |
commit | 305f2efb63a129aab9013e7d4806c3975a1f1111 (patch) | |
tree | e91af31807b2e642948a0a381ec8a31a78847d4d /llvm/lib/Target/X86/X86FastISel.cpp | |
parent | 82ff9af068a6a648fb51acf3e366922426146faf (diff) | |
download | bcm5719-llvm-305f2efb63a129aab9013e7d4806c3975a1f1111.tar.gz bcm5719-llvm-305f2efb63a129aab9013e7d4806c3975a1f1111.zip |
unthread MMI from FastISel
llvm-svn: 100416
Diffstat (limited to 'llvm/lib/Target/X86/X86FastISel.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86FastISel.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86FastISel.cpp b/llvm/lib/Target/X86/X86FastISel.cpp index 536c64f8070..7849b51accc 100644 --- a/llvm/lib/Target/X86/X86FastISel.cpp +++ b/llvm/lib/Target/X86/X86FastISel.cpp @@ -54,7 +54,6 @@ class X86FastISel : public FastISel { public: explicit X86FastISel(MachineFunction &mf, - MachineModuleInfo *mmi, DenseMap<const Value *, unsigned> &vm, DenseMap<const BasicBlock *, MachineBasicBlock *> &bm, DenseMap<const AllocaInst *, int> &am @@ -62,7 +61,7 @@ public: , SmallSet<Instruction*, 8> &cil #endif ) - : FastISel(mf, mmi, vm, bm, am + : FastISel(mf, vm, bm, am #ifndef NDEBUG , cil #endif @@ -1752,7 +1751,6 @@ unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) { namespace llvm { llvm::FastISel *X86::createFastISel(MachineFunction &mf, - MachineModuleInfo *mmi, DenseMap<const Value *, unsigned> &vm, DenseMap<const BasicBlock *, MachineBasicBlock *> &bm, DenseMap<const AllocaInst *, int> &am @@ -1760,7 +1758,7 @@ namespace llvm { , SmallSet<Instruction*, 8> &cil #endif ) { - return new X86FastISel(mf, mmi, vm, bm, am + return new X86FastISel(mf, vm, bm, am #ifndef NDEBUG , cil #endif |