[llvm-commits] CVS: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp SchedGraph.cpp SchedGraph.h SchedGraphCommon.cpp SchedPriorities.cpp SchedPriorities.h

Reid Spencer reid at x10sys.com
Wed Sep 1 15:55:57 PDT 2004



Changes in directory llvm/lib/CodeGen/InstrSched:

InstrScheduling.cpp updated: 1.77 -> 1.78
SchedGraph.cpp updated: 1.66 -> 1.67
SchedGraph.h updated: 1.39 -> 1.40
SchedGraphCommon.cpp updated: 1.6 -> 1.7
SchedPriorities.cpp updated: 1.33 -> 1.34
SchedPriorities.h updated: 1.26 -> 1.27
---
Log message:

Changes For Bug 352: http://llvm.cs.uiuc.edu/PR352 
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM 
public header files must be under include/llvm/.


---
Diffs of the changes:  (+7 -7)

Index: llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp
diff -u llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.77 llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.78
--- llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp:1.77	Wed Aug 18 15:04:21 2004
+++ llvm/lib/CodeGen/InstrSched/InstrScheduling.cpp	Wed Sep  1 17:55:35 2004
@@ -20,7 +20,7 @@
 #include "../../Target/SparcV9/MachineCodeForInstruction.h"
 #include "../../Target/SparcV9/LiveVar/FunctionLiveVarInfo.h"
 #include "../../Target/SparcV9/SparcV9InstrInfo.h"
-#include "Support/CommandLine.h"
+#include "llvm/Support/CommandLine.h"
 #include <algorithm>
 #include <iostream>
 


Index: llvm/lib/CodeGen/InstrSched/SchedGraph.cpp
diff -u llvm/lib/CodeGen/InstrSched/SchedGraph.cpp:1.66 llvm/lib/CodeGen/InstrSched/SchedGraph.cpp:1.67
--- llvm/lib/CodeGen/InstrSched/SchedGraph.cpp:1.66	Wed Aug 18 15:04:23 2004
+++ llvm/lib/CodeGen/InstrSched/SchedGraph.cpp	Wed Sep  1 17:55:35 2004
@@ -22,7 +22,7 @@
 #include "../../Target/SparcV9/MachineCodeForInstruction.h"
 #include "../../Target/SparcV9/SparcV9RegInfo.h"
 #include "../../Target/SparcV9/SparcV9InstrInfo.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/STLExtras.h"
 #include <iostream>
 
 namespace llvm {


Index: llvm/lib/CodeGen/InstrSched/SchedGraph.h
diff -u llvm/lib/CodeGen/InstrSched/SchedGraph.h:1.39 llvm/lib/CodeGen/InstrSched/SchedGraph.h:1.40
--- llvm/lib/CodeGen/InstrSched/SchedGraph.h:1.39	Wed Feb 11 19:34:05 2004
+++ llvm/lib/CodeGen/InstrSched/SchedGraph.h	Wed Sep  1 17:55:35 2004
@@ -22,8 +22,8 @@
 #include "llvm/CodeGen/SchedGraphCommon.h"
 #include "llvm/CodeGen/MachineInstr.h"
 #include "llvm/Transforms/Scalar.h"
-#include "Support/hash_map"
-#include "Support/GraphTraits.h"
+#include "llvm/ADT/hash_map"
+#include "llvm/ADT/GraphTraits.h"
 
 namespace llvm {
 


Index: llvm/lib/CodeGen/InstrSched/SchedGraphCommon.cpp
diff -u llvm/lib/CodeGen/InstrSched/SchedGraphCommon.cpp:1.6 llvm/lib/CodeGen/InstrSched/SchedGraphCommon.cpp:1.7
--- llvm/lib/CodeGen/InstrSched/SchedGraphCommon.cpp:1.6	Sun Jul  4 07:19:56 2004
+++ llvm/lib/CodeGen/InstrSched/SchedGraphCommon.cpp	Wed Sep  1 17:55:35 2004
@@ -13,7 +13,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/CodeGen/SchedGraphCommon.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/STLExtras.h"
 #include <iostream>
 
 namespace llvm {


Index: llvm/lib/CodeGen/InstrSched/SchedPriorities.cpp
diff -u llvm/lib/CodeGen/InstrSched/SchedPriorities.cpp:1.33 llvm/lib/CodeGen/InstrSched/SchedPriorities.cpp:1.34
--- llvm/lib/CodeGen/InstrSched/SchedPriorities.cpp:1.33	Sun Jul  4 07:19:56 2004
+++ llvm/lib/CodeGen/InstrSched/SchedPriorities.cpp	Wed Sep  1 17:55:35 2004
@@ -21,7 +21,7 @@
 #include "../../Target/SparcV9/LiveVar/FunctionLiveVarInfo.h"
 #include "llvm/CodeGen/MachineBasicBlock.h"
 #include "llvm/Support/CFG.h"
-#include "Support/PostOrderIterator.h"
+#include "llvm/ADT/PostOrderIterator.h"
 #include <iostream>
 
 namespace llvm {


Index: llvm/lib/CodeGen/InstrSched/SchedPriorities.h
diff -u llvm/lib/CodeGen/InstrSched/SchedPriorities.h:1.26 llvm/lib/CodeGen/InstrSched/SchedPriorities.h:1.27
--- llvm/lib/CodeGen/InstrSched/SchedPriorities.h:1.26	Tue Nov 11 16:41:33 2003
+++ llvm/lib/CodeGen/InstrSched/SchedPriorities.h	Wed Sep  1 17:55:35 2004
@@ -23,7 +23,7 @@
 #include "SchedGraph.h"
 #include "llvm/CodeGen/InstrScheduling.h"
 #include "llvm/Target/TargetSchedInfo.h"
-#include "Support/hash_set"
+#include "llvm/ADT/hash_set"
 #include <list>
 
 namespace llvm {






More information about the llvm-commits mailing list