mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-21 18:31:36 +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:
parent
851f87c6c9
commit
a7a0ed7901
@ -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
|
||||
|
@ -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() {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user