[llvm-commits] CVS: llvm/lib/Bytecode/Writer/SlotCalculator.cpp Writer.cpp WriterInternals.h

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



Changes in directory llvm/lib/Bytecode/Writer:

SlotCalculator.cpp updated: 1.62 -> 1.63
Writer.cpp updated: 1.77 -> 1.78
WriterInternals.h updated: 1.23 -> 1.24
---
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:  (+5 -5)

Index: llvm/lib/Bytecode/Writer/SlotCalculator.cpp
diff -u llvm/lib/Bytecode/Writer/SlotCalculator.cpp:1.62 llvm/lib/Bytecode/Writer/SlotCalculator.cpp:1.63
--- llvm/lib/Bytecode/Writer/SlotCalculator.cpp:1.62	Thu Aug 26 17:32:00 2004
+++ llvm/lib/Bytecode/Writer/SlotCalculator.cpp	Wed Sep  1 17:55:35 2004
@@ -23,8 +23,8 @@
 #include "llvm/SymbolTable.h"
 #include "llvm/Type.h"
 #include "llvm/Analysis/ConstantsScanner.h"
-#include "Support/PostOrderIterator.h"
-#include "Support/STLExtras.h"
+#include "llvm/ADT/PostOrderIterator.h"
+#include "llvm/ADT/STLExtras.h"
 #include <algorithm>
 #include <functional>
 


Index: llvm/lib/Bytecode/Writer/Writer.cpp
diff -u llvm/lib/Bytecode/Writer/Writer.cpp:1.77 llvm/lib/Bytecode/Writer/Writer.cpp:1.78
--- llvm/lib/Bytecode/Writer/Writer.cpp:1.77	Thu Aug 26 19:38:44 2004
+++ llvm/lib/Bytecode/Writer/Writer.cpp	Wed Sep  1 17:55:35 2004
@@ -25,8 +25,8 @@
 #include "llvm/Module.h"
 #include "llvm/SymbolTable.h"
 #include "llvm/Support/GetElementPtrTypeIterator.h"
-#include "Support/STLExtras.h"
-#include "Support/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/Statistic.h"
 #include <cstring>
 #include <algorithm>
 using namespace llvm;


Index: llvm/lib/Bytecode/Writer/WriterInternals.h
diff -u llvm/lib/Bytecode/Writer/WriterInternals.h:1.23 llvm/lib/Bytecode/Writer/WriterInternals.h:1.24
--- llvm/lib/Bytecode/Writer/WriterInternals.h:1.23	Tue Aug 17 02:45:14 2004
+++ llvm/lib/Bytecode/Writer/WriterInternals.h	Wed Sep  1 17:55:35 2004
@@ -23,7 +23,7 @@
 #include "llvm/Bytecode/Writer.h"
 #include "llvm/Bytecode/Format.h"
 #include "llvm/Instruction.h"
-#include "Support/DataTypes.h"
+#include "llvm/Support/DataTypes.h"
 #include <string>
 #include <vector>
 






More information about the llvm-commits mailing list