llvm-6502/lib/Target/X86/X86FastISel.h
Dan Gohman bb466331e7 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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55076 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-20 21:05:57 +00:00

32 lines
735 B
C++

//===-- X86FastISel.h - X86 FastISel header -------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the interface to the X86-specific support for the FastISel
// class.
//
//===----------------------------------------------------------------------===//
#ifndef X86FASTISEL_H
#define X86FASTISEL_H
namespace llvm {
class FastISel;
class MachineFunction;
namespace X86 {
FastISel *createFastISel(MachineFunction &mf);
} // namespace X86
} // namespace llvm
#endif