1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

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

support a new bottom-up mode.

llvm-svn: 103138
This commit is contained in:
Dan Gohman 2010-05-05 23:58:35 +00:00
parent ca80f41a4d
commit 180422793f
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() {}