Add an "IsBottomUp" member function to FastISel, which will be used to

support a new bottom-up mode.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-05-05 23:58:35 +00:00
parent 851f87c6c9
commit a7a0ed7901
2 changed files with 3 additions and 1 deletions

View File

@ -60,6 +60,7 @@ protected:
const TargetData &TD;
const TargetInstrInfo &TII;
const TargetLowering &TLI;
bool IsBottomUp;
public:
/// startNewBlock - Set the current block to which generated machine

View File

@ -782,7 +782,8 @@ FastISel::FastISel(MachineFunction &mf,
TM(MF.getTarget()),
TD(*TM.getTargetData()),
TII(*TM.getInstrInfo()),
TLI(*TM.getTargetLowering()) {
TLI(*TM.getTargetLowering()),
IsBottomUp(false) {
}
FastISel::~FastISel() {}