[llvm-commits] CVS: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp SchedGraph.cpp SchedPriorities.h
Chris Lattner
lattner at cs.uiuc.edu
Sat Dec 28 21:14:01 PST 2002
Changes in directory llvm/lib/CodeGen/InstrSched:
InstrScheduling.cpp updated: 1.48 -> 1.49
SchedGraph.cpp updated: 1.39 -> 1.40
SchedPriorities.h updated: 1.22 -> 1.23
---
Log message:
More renamings of Target/Machine*Info to Target/Target*Info
---
Diffs of the changes:
Index: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp
diff -u llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.48 llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.49
--- llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.48 Mon Oct 28 12:50:08 2002
+++ llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp Sat Dec 28 21:12:55 2002
@@ -340,8 +340,8 @@
class SchedulingManager: public NonCopyable {
public: // publicly accessible data members
- const unsigned int nslots;
- const MachineSchedInfo& schedInfo;
+ const unsigned nslots;
+ const TargetSchedInfo& schedInfo;
SchedPriorities& schedPrio;
InstrSchedule isched;
Index: llvm/lib/CodeGen/InstrSched/SchedGraph.cpp
diff -u llvm/lib/CodeGen/InstrSched/SchedGraph.cpp:1.39 llvm/lib/CodeGen/InstrSched/SchedGraph.cpp:1.40
--- llvm/lib/CodeGen/InstrSched/SchedGraph.cpp:1.39 Mon Oct 28 12:50:08 2002
+++ llvm/lib/CodeGen/InstrSched/SchedGraph.cpp Sat Dec 28 21:12:55 2002
@@ -10,7 +10,7 @@
#include "llvm/CodeGen/InstrSelection.h"
#include "llvm/CodeGen/MachineCodeForInstruction.h"
#include "llvm/CodeGen/MachineFunction.h"
-#include "llvm/Target/MachineRegInfo.h"
+#include "llvm/Target/TargetRegInfo.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/MachineInstrInfo.h"
#include "llvm/Function.h"
Index: llvm/lib/CodeGen/InstrSched/SchedPriorities.h
diff -u llvm/lib/CodeGen/InstrSched/SchedPriorities.h:1.22 llvm/lib/CodeGen/InstrSched/SchedPriorities.h:1.23
--- llvm/lib/CodeGen/InstrSched/SchedPriorities.h:1.22 Sat Nov 2 16:07:51 2002
+++ llvm/lib/CodeGen/InstrSched/SchedPriorities.h Sat Dec 28 21:12:55 2002
@@ -15,7 +15,7 @@
#include "SchedGraph.h"
#include "llvm/CodeGen/InstrScheduling.h"
-#include "llvm/Target/MachineSchedInfo.h"
+#include "llvm/Target/TargetSchedInfo.h"
#include "Support/hash_set"
#include <list>
More information about the llvm-commits
mailing list