[llvm-commits] CVS: llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp MSchedGraph.cpp MSchedGraph.h ModuloScheduling.cpp
Reid Spencer
reid at x10sys.com
Wed Sep 1 15:55:58 PDT 2004
Changes in directory llvm/lib/CodeGen/ModuloScheduling:
MSSchedule.cpp updated: 1.4 -> 1.5
MSchedGraph.cpp updated: 1.6 -> 1.7
MSchedGraph.h updated: 1.3 -> 1.4
ModuloScheduling.cpp 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: (+8 -8)
Index: llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp
diff -u llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp:1.4 llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp:1.5
--- llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp:1.4 Sat Aug 7 10:19:31 2004
+++ llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp Wed Sep 1 17:55:35 2004
@@ -13,7 +13,7 @@
#define DEBUG_TYPE "ModuloSched"
#include "MSSchedule.h"
-#include "Support/Debug.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Target/TargetSchedInfo.h"
using namespace llvm;
Index: llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp
diff -u llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp:1.6 llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp:1.7
--- llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp:1.6 Mon Aug 2 09:02:21 2004
+++ llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp Wed Sep 1 17:55:35 2004
@@ -16,7 +16,7 @@
#include "../../Target/SparcV9/SparcV9RegisterInfo.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/Target/TargetInstrInfo.h"
-#include "Support/Debug.h"
+#include "llvm/Support/Debug.h"
#include <cstdlib>
using namespace llvm;
Index: llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.h
diff -u llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.h:1.3 llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.h:1.4
--- llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.h:1.3 Wed May 26 01:27:18 2004
+++ llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.h Wed Sep 1 17:55:35 2004
@@ -16,9 +16,9 @@
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/Target/TargetMachine.h"
-#include "Support/GraphTraits.h"
-#include "Support/STLExtras.h"
-#include "Support/iterator"
+#include "llvm/ADT/GraphTraits.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/iterator"
#include <vector>
namespace llvm {
Index: llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
diff -u llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp:1.26 llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp:1.27
--- llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp:1.26 Wed Aug 18 15:04:23 2004
+++ llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp Wed Sep 1 17:55:35 2004
@@ -21,9 +21,9 @@
#include "llvm/CodeGen/Passes.h"
#include "llvm/Support/CFG.h"
#include "llvm/Target/TargetSchedInfo.h"
-#include "Support/Debug.h"
-#include "Support/GraphWriter.h"
-#include "Support/StringExtras.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/Support/GraphWriter.h"
+#include "llvm/ADT/StringExtras.h"
#include <cmath>
#include <fstream>
#include <sstream>
More information about the llvm-commits
mailing list