diff options
| author | Dan Gohman <gohman@apple.com> | 2008-08-20 21:05:57 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-08-20 21:05:57 +0000 |
| commit | 02c84b8910687c9145182339999393d577293960 (patch) | |
| tree | a8d754231ba898a247e22f23162fa5d47fc6eed6 /llvm/lib/Target/X86/X86FastISel.h | |
| parent | 43d1c7c607a67831ddf401162aae39755d514ae5 (diff) | |
| download | bcm5719-llvm-02c84b8910687c9145182339999393d577293960.tar.gz bcm5719-llvm-02c84b8910687c9145182339999393d577293960.zip | |
Simplify FastISel's constructor argument list, make the FastISel
class hold a MachineRegisterInfo member, and make the
MachineBasicBlock be passed in to SelectInstructions rather
than the FastISel constructor.
llvm-svn: 55076
Diffstat (limited to 'llvm/lib/Target/X86/X86FastISel.h')
| -rw-r--r-- | llvm/lib/Target/X86/X86FastISel.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86FastISel.h b/llvm/lib/Target/X86/X86FastISel.h index 0f2b26a4d2f..56dfc4f4b9e 100644 --- a/llvm/lib/Target/X86/X86FastISel.h +++ b/llvm/lib/Target/X86/X86FastISel.h @@ -18,14 +18,11 @@ namespace llvm { class FastISel; -class MachineBasicBlock; class MachineFunction; -class TargetInstrInfo; namespace X86 { -FastISel *createFastISel(MachineBasicBlock *mbb, MachineFunction *mf, - const TargetInstrInfo *tii); +FastISel *createFastISel(MachineFunction &mf); } // namespace X86 |

