Delete an unused member variable.

llvm-svn: 101143
This commit is contained in:
Dan Gohman 2010-04-13 16:51:39 +00:00
parent 1521831bff
commit 9652ec03e5
2 changed files with 0 additions and 2 deletions

View File

@ -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.

View File

@ -29,7 +29,6 @@ ScheduleDAG::ScheduleDAG(MachineFunction &mf)
TRI(TM.getRegisterInfo()),
TLI(TM.getTargetLowering()),
MF(mf), MRI(mf.getRegInfo()),
ConstPool(MF.getConstantPool()),
EntrySU(), ExitSU() {
}