Delete an unused member variable.
authorDan Gohman <gohman@apple.com>
Tue, 13 Apr 2010 16:51:39 +0000 (16:51 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 13 Apr 2010 16:51:39 +0000 (16:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101143 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/ScheduleDAG.h
lib/CodeGen/ScheduleDAG.cpp

index 9563d0811cf554c6b9392615d1a509233121c75c..d53d60504c1bde4e0cb4dbe4c76b4b6b3051c24a 100644 (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.
index 1f3e295fe9797228877ad6b772ca442c4a85067f..587f001cc7bfa4f0d6607e5648b5a0189181ef7b 100644 (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() {
 }