mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-17 00:27:31 +00:00
Delete an unused member variable.
llvm-svn: 101143
This commit is contained in:
parent
1521831bff
commit
9652ec03e5
@ -459,7 +459,6 @@ namespace llvm {
|
||||
const TargetLowering *TLI; // Target lowering info
|
||||
MachineFunction &MF; // Machine function
|
||||
MachineRegisterInfo &MRI; // Virtual/real register map
|
||||
MachineConstantPool *ConstPool; // Target constant pool
|
||||
std::vector<SUnit*> Sequence; // The schedule. Null SUnit*'s
|
||||
// represent noop instructions.
|
||||
std::vector<SUnit> SUnits; // The scheduling units.
|
||||
|
@ -29,7 +29,6 @@ ScheduleDAG::ScheduleDAG(MachineFunction &mf)
|
||||
TRI(TM.getRegisterInfo()),
|
||||
TLI(TM.getTargetLowering()),
|
||||
MF(mf), MRI(mf.getRegInfo()),
|
||||
ConstPool(MF.getConstantPool()),
|
||||
EntrySU(), ExitSU() {
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user