aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/InstructionCombining.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-07 18:12:18 +0000
committerChris Lattner <sabre@nondot.org>2002-05-07 18:12:18 +0000
commit497c60c0ed891f4a189287cf3c1ad44dfcfe3099 (patch)
tree3dff677ee113c9c19d87bf724f9e8c85b3e06d50 /lib/Transforms/Scalar/InstructionCombining.cpp
parent6d7491c3cc1ce46f346767fabb39d5dcda4b22bb (diff)
downloadexternal_llvm-497c60c0ed891f4a189287cf3c1ad44dfcfe3099.tar.gz
external_llvm-497c60c0ed891f4a189287cf3c1ad44dfcfe3099.tar.bz2
external_llvm-497c60c0ed891f4a189287cf3c1ad44dfcfe3099.zip
Reduce dependance on TransformInternals.h, instead using the TransformUtils library
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index fda64ab49a..6272cd090f 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -16,6 +16,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Transforms/Scalar/InstructionCombining.h"
+#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/ConstantHandling.h"
#include "llvm/iMemory.h"
#include "llvm/iOther.h"
@@ -24,7 +25,6 @@
#include "llvm/Pass.h"
#include "llvm/Support/InstIterator.h"
#include "llvm/Support/InstVisitor.h"
-#include "../TransformInternals.h"
namespace {