[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineBasicBlock.h MachineCodeEmitter.h MachineFunction.h MachineInstr.h SSARegMap.h SchedGraphCommon.h SelectionDAG.h
Reid Spencer
reid at x10sys.com
Wed Sep 1 15:55:56 PDT 2004
Changes in directory llvm/include/llvm/CodeGen:
MachineBasicBlock.h updated: 1.38 -> 1.39
MachineCodeEmitter.h updated: 1.17 -> 1.18
MachineFunction.h updated: 1.42 -> 1.43
MachineInstr.h updated: 1.153 -> 1.154
SSARegMap.h updated: 1.10 -> 1.11
SchedGraphCommon.h updated: 1.11 -> 1.12
SelectionDAG.h updated: 1.5 -> 1.6
---
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/include/llvm/CodeGen/MachineBasicBlock.h
diff -u llvm/include/llvm/CodeGen/MachineBasicBlock.h:1.38 llvm/include/llvm/CodeGen/MachineBasicBlock.h:1.39
--- llvm/include/llvm/CodeGen/MachineBasicBlock.h:1.38 Thu Aug 26 23:00:26 2004
+++ llvm/include/llvm/CodeGen/MachineBasicBlock.h Wed Sep 1 17:55:34 2004
@@ -15,8 +15,8 @@
#define LLVM_CODEGEN_MACHINEBASICBLOCK_H
#include "llvm/CodeGen/MachineInstr.h"
-#include "Support/GraphTraits.h"
-#include "Support/ilist"
+#include "llvm/ADT/GraphTraits.h"
+#include "llvm/ADT/ilist"
#include <iosfwd>
namespace llvm {
Index: llvm/include/llvm/CodeGen/MachineCodeEmitter.h
diff -u llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.17 llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.18
--- llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.17 Fri Apr 23 12:11:12 2004
+++ llvm/include/llvm/CodeGen/MachineCodeEmitter.h Wed Sep 1 17:55:34 2004
@@ -18,7 +18,7 @@
#define LLVM_CODEGEN_MACHINECODEEMITTER_H
#include <string>
-#include "Support/DataTypes.h"
+#include "llvm/Support/DataTypes.h"
namespace llvm {
Index: llvm/include/llvm/CodeGen/MachineFunction.h
diff -u llvm/include/llvm/CodeGen/MachineFunction.h:1.42 llvm/include/llvm/CodeGen/MachineFunction.h:1.43
--- llvm/include/llvm/CodeGen/MachineFunction.h:1.42 Thu Aug 26 23:02:35 2004
+++ llvm/include/llvm/CodeGen/MachineFunction.h Wed Sep 1 17:55:34 2004
@@ -19,7 +19,7 @@
#define LLVM_CODEGEN_MACHINEFUNCTION_H
#include "llvm/CodeGen/MachineBasicBlock.h"
-#include "Support/Annotation.h"
+#include "llvm/Support/Annotation.h"
namespace llvm {
Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.153 llvm/include/llvm/CodeGen/MachineInstr.h:1.154
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.153 Fri Jul 30 20:59:11 2004
+++ llvm/include/llvm/CodeGen/MachineInstr.h Wed Sep 1 17:55:34 2004
@@ -16,7 +16,7 @@
#ifndef LLVM_CODEGEN_MACHINEINSTR_H
#define LLVM_CODEGEN_MACHINEINSTR_H
-#include "Support/iterator"
+#include "llvm/ADT/iterator"
#include <string>
#include <vector>
#include <cassert>
Index: llvm/include/llvm/CodeGen/SSARegMap.h
diff -u llvm/include/llvm/CodeGen/SSARegMap.h:1.10 llvm/include/llvm/CodeGen/SSARegMap.h:1.11
--- llvm/include/llvm/CodeGen/SSARegMap.h:1.10 Wed Feb 25 15:55:45 2004
+++ llvm/include/llvm/CodeGen/SSARegMap.h Wed Sep 1 17:55:34 2004
@@ -18,7 +18,7 @@
#define LLVM_CODEGEN_SSAREGMAP_H
#include "llvm/Target/MRegisterInfo.h"
-#include "Support/DenseMap.h"
+#include "llvm/ADT/DenseMap.h"
namespace llvm {
Index: llvm/include/llvm/CodeGen/SchedGraphCommon.h
diff -u llvm/include/llvm/CodeGen/SchedGraphCommon.h:1.11 llvm/include/llvm/CodeGen/SchedGraphCommon.h:1.12
--- llvm/include/llvm/CodeGen/SchedGraphCommon.h:1.11 Sat May 8 11:14:24 2004
+++ llvm/include/llvm/CodeGen/SchedGraphCommon.h Wed Sep 1 17:55:34 2004
@@ -16,7 +16,7 @@
#define LLVM_CODEGEN_SCHEDGRAPHCOMMON_H
#include "llvm/Value.h"
-#include "Support/iterator"
+#include "llvm/ADT/iterator"
#include <vector>
namespace llvm {
Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.5 llvm/include/llvm/CodeGen/SelectionDAG.h:1.6
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.5 Tue Nov 11 16:41:31 2003
+++ llvm/include/llvm/CodeGen/SelectionDAG.h Wed Sep 1 17:55:34 2004
@@ -23,7 +23,7 @@
#define LLVM_CODEGEN_SELECTIONDAG_H
#include "llvm/CodeGen/ValueTypes.h"
-#include "Support/DataTypes.h"
+#include "llvm/Support/DataTypes.h"
#include <map>
#include <vector>
#include <cassert>
More information about the llvm-commits
mailing list