summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86FastISel.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-08-20 21:05:57 +0000
committerDan Gohman <gohman@apple.com>2008-08-20 21:05:57 +0000
commit02c84b8910687c9145182339999393d577293960 (patch)
treea8d754231ba898a247e22f23162fa5d47fc6eed6 /llvm/lib/Target/X86/X86FastISel.h
parent43d1c7c607a67831ddf401162aae39755d514ae5 (diff)
downloadbcm5719-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.h5
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
OpenPOWER on IntegriCloud