Adjust #includes to match movement of constant folding code from transformutils to...
authorChris Lattner <sabre@nondot.org>
Tue, 30 Jan 2007 23:46:24 +0000 (23:46 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 30 Jan 2007 23:46:24 +0000 (23:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33680 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/GlobalOpt.cpp
lib/Transforms/Scalar/ConstantProp.cpp
lib/Transforms/Scalar/CorrelatedExprs.cpp
lib/Transforms/Scalar/GCSE.cpp
lib/Transforms/Scalar/InstructionCombining.cpp
lib/Transforms/Scalar/LICM.cpp
lib/Transforms/Scalar/LoopUnroll.cpp
lib/Transforms/Scalar/LoopUnswitch.cpp
lib/Transforms/Scalar/SCCP.cpp
lib/Transforms/Utils/CloneFunction.cpp
lib/Transforms/Utils/SimplifyCFG.cpp

index c0cb15ffffa5504c5b5c08ff73abd30e669fdd4d..3bfa15cde6a1c60851a5a53d424e5e1dc18b90ee 100644 (file)
@@ -22,9 +22,9 @@
 #include "llvm/IntrinsicInst.h"
 #include "llvm/Module.h"
 #include "llvm/Pass.h"
-#include "llvm/Support/Debug.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Target/TargetData.h"
-#include "llvm/Transforms/Utils/Local.h"
+#include "llvm/Support/Debug.h"
 #include "llvm/ADT/Statistic.h"
 #include "llvm/ADT/StringExtras.h"
 #include <algorithm>
index d888a10c727f4453b5aba017bd92ee160728b040..da59ad42baf95f48e50528334460f4d3dd21df03 100644 (file)
@@ -20,7 +20,7 @@
 
 #define DEBUG_TYPE "constprop"
 #include "llvm/Transforms/Scalar.h"
-#include "llvm/Transforms/Utils/Local.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Constant.h"
 #include "llvm/Instruction.h"
 #include "llvm/Pass.h"
index 1027a49da2ea3f4b7786b1b07a35a9e5dee7aac1..5172daa9c4e271aa8de1dbe6c563fd1e62b3e933 100644 (file)
@@ -34,9 +34,9 @@
 #include "llvm/Instructions.h"
 #include "llvm/Type.h"
 #include "llvm/DerivedTypes.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Analysis/Dominators.h"
 #include "llvm/Assembly/Writer.h"
-#include "llvm/Transforms/Utils/Local.h"
 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
 #include "llvm/Support/ConstantRange.h"
 #include "llvm/Support/CFG.h"
index 80b9ae73a2b2ca336cc77c50dce5e74b442c6e2c..7fef306985b76fd179c607d766c2f4c29c5b33a0 100644 (file)
 
 #define DEBUG_TYPE "gcse"
 #include "llvm/Transforms/Scalar.h"
-#include "llvm/BasicBlock.h"
-#include "llvm/Constant.h"
 #include "llvm/Instructions.h"
+#include "llvm/Function.h"
 #include "llvm/Type.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Analysis/Dominators.h"
 #include "llvm/Analysis/ValueNumbering.h"
-#include "llvm/Transforms/Utils/Local.h"
 #include "llvm/ADT/DepthFirstIterator.h"
 #include "llvm/ADT/Statistic.h"
 #include <algorithm>
index fc5b5f18964d671b25c27f7bf5d4b1f2f8d56981..a9c9118fe6da077e4fa2cce775f76fcad40ba96a 100644 (file)
@@ -39,6 +39,7 @@
 #include "llvm/Pass.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/GlobalVariable.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Target/TargetData.h"
 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
 #include "llvm/Transforms/Utils/Local.h"
index 437f7a62a188afd057e6a54a2f7f73ec1348cfd5..5874b6802afcf3f031786294f60d3cc8f7414b31 100644 (file)
@@ -33,6 +33,7 @@
 
 #define DEBUG_TYPE "licm"
 #include "llvm/Transforms/Scalar.h"
+#include "llvm/Constants.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/Instructions.h"
 #include "llvm/Target/TargetData.h"
@@ -42,7 +43,6 @@
 #include "llvm/Analysis/Dominators.h"
 #include "llvm/Support/CFG.h"
 #include "llvm/Transforms/Utils/PromoteMemToReg.h"
-#include "llvm/Transforms/Utils/Local.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/ADT/Statistic.h"
index 603ba6adbb577bea88019f7f83525667f313ec45..655ddc4179244d6e5cfc52b2cb3f5c61e211774c 100644 (file)
@@ -22,6 +22,7 @@
 #include "llvm/Constants.h"
 #include "llvm/Function.h"
 #include "llvm/Instructions.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Analysis/LoopInfo.h"
 #include "llvm/Transforms/Utils/Cloning.h"
 #include "llvm/Transforms/Utils/Local.h"
index 8adeea25d78e52b2dba2dd13ed0d39b0f151db23..00979a67403144cee2ecb6349f3c1a114fbb95ff 100644 (file)
@@ -32,6 +32,7 @@
 #include "llvm/DerivedTypes.h"
 #include "llvm/Function.h"
 #include "llvm/Instructions.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Analysis/LoopInfo.h"
 #include "llvm/Transforms/Utils/Cloning.h"
 #include "llvm/Transforms/Utils/Local.h"
index cae743fee504e9802ed050a8cdecdc4be11b9a57..37f1b5507a0f4627f4c95d06de90dcc1256af940 100644 (file)
 #include "llvm/DerivedTypes.h"
 #include "llvm/Instructions.h"
 #include "llvm/Pass.h"
-#include "llvm/Support/InstVisitor.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Transforms/Utils/Local.h"
 #include "llvm/Support/CallSite.h"
 #include "llvm/Support/Debug.h"
+#include "llvm/Support/InstVisitor.h"
 #include "llvm/ADT/hash_map"
 #include "llvm/ADT/SmallVector.h"
 #include "llvm/ADT/Statistic.h"
index 12dff3bf588a870f7d17638827969055bf68b844..74cc66210eecb11e74147f335ac327e0e8e00ed3 100644 (file)
@@ -20,7 +20,7 @@
 #include "llvm/Function.h"
 #include "llvm/Support/CFG.h"
 #include "ValueMapper.h"
-#include "llvm/Transforms/Utils/Local.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/ADT/SmallVector.h"
 using namespace llvm;
 
index 221a799f883742d8dd193e34dbd489cc47f2b5b7..c94c41b2169b1b52f40699656304ff9a55a33004 100644 (file)
@@ -19,6 +19,7 @@
 #include "llvm/DerivedTypes.h"
 #include "llvm/Support/CFG.h"
 #include "llvm/Support/Debug.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
 #include <algorithm>
 #include <functional>