[llvm-commits] CVS: llvm/lib/Transforms/ExprTypeConvert.cpp LevelRaise.cpp
Reid Spencer
reid at x10sys.com
Wed Sep 1 15:55:58 PDT 2004
Changes in directory llvm/lib/Transforms:
ExprTypeConvert.cpp updated: 1.97 -> 1.98
LevelRaise.cpp updated: 1.101 -> 1.102
---
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: (+6 -6)
Index: llvm/lib/Transforms/ExprTypeConvert.cpp
diff -u llvm/lib/Transforms/ExprTypeConvert.cpp:1.97 llvm/lib/Transforms/ExprTypeConvert.cpp:1.98
--- llvm/lib/Transforms/ExprTypeConvert.cpp:1.97 Sat Aug 7 20:30:07 2004
+++ llvm/lib/Transforms/ExprTypeConvert.cpp Wed Sep 1 17:55:36 2004
@@ -17,8 +17,8 @@
#include "llvm/Constants.h"
#include "llvm/Instructions.h"
#include "llvm/Analysis/Expressions.h"
-#include "Support/STLExtras.h"
-#include "Support/Debug.h"
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/Support/Debug.h"
#include <algorithm>
using namespace llvm;
Index: llvm/lib/Transforms/LevelRaise.cpp
diff -u llvm/lib/Transforms/LevelRaise.cpp:1.101 llvm/lib/Transforms/LevelRaise.cpp:1.102
--- llvm/lib/Transforms/LevelRaise.cpp:1.101 Sat Aug 7 20:27:56 2004
+++ llvm/lib/Transforms/LevelRaise.cpp Wed Sep 1 17:55:36 2004
@@ -19,10 +19,10 @@
#include "llvm/Instructions.h"
#include "llvm/Pass.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/STLExtras.h"
#include <algorithm>
using namespace llvm;
More information about the llvm-commits
mailing list