mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-10 02:25:47 +00:00
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:
@@ -60,6 +60,7 @@ protected:
|
|||||||
const TargetData &TD;
|
const TargetData &TD;
|
||||||
const TargetInstrInfo &TII;
|
const TargetInstrInfo &TII;
|
||||||
const TargetLowering &TLI;
|
const TargetLowering &TLI;
|
||||||
|
bool IsBottomUp;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// startNewBlock - Set the current block to which generated machine
|
/// startNewBlock - Set the current block to which generated machine
|
||||||
|
@@ -782,7 +782,8 @@ FastISel::FastISel(MachineFunction &mf,
|
|||||||
TM(MF.getTarget()),
|
TM(MF.getTarget()),
|
||||||
TD(*TM.getTargetData()),
|
TD(*TM.getTargetData()),
|
||||||
TII(*TM.getInstrInfo()),
|
TII(*TM.getInstrInfo()),
|
||||||
TLI(*TM.getTargetLowering()) {
|
TLI(*TM.getTargetLowering()),
|
||||||
|
IsBottomUp(false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
FastISel::~FastISel() {}
|
FastISel::~FastISel() {}
|
||||||
|
Reference in New Issue
Block a user