aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-09 19:08:28 +0000
committerChris Lattner <sabre@nondot.org>2002-04-09 19:08:28 +0000
commit0ac5429ff05bbbcefbbe5f7353485047a69d2064 (patch)
tree913965084031e19dffa97a1e7e13513078d11757 /lib
parentd6a8ca745d1278d1e82dfb3bbd65c3fabfe3d68c (diff)
downloadexternal_llvm-0ac5429ff05bbbcefbbe5f7353485047a69d2064.zip
external_llvm-0ac5429ff05bbbcefbbe5f7353485047a69d2064.tar.gz
external_llvm-0ac5429ff05bbbcefbbe5f7353485047a69d2064.tar.bz2
Add explicit #includes of Function.h to make up for the removed #include
in iOther.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2209 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Analysis/DataStructure/ComputeClosure.cpp1
-rw-r--r--lib/Target/SparcV9/SparcV9RegInfo.cpp1
-rw-r--r--lib/Transforms/TransformInternals.cpp1
-rw-r--r--lib/Transforms/Utils/LowerAllocations.cpp1
4 files changed, 4 insertions, 0 deletions
diff --git a/lib/Analysis/DataStructure/ComputeClosure.cpp b/lib/Analysis/DataStructure/ComputeClosure.cpp
index 5ea7068..671fb92 100644
--- a/lib/Analysis/DataStructure/ComputeClosure.cpp
+++ b/lib/Analysis/DataStructure/ComputeClosure.cpp
@@ -8,6 +8,7 @@
//#define DEBUG_IP_CLOSURE 1
#include "llvm/Analysis/DataStructure.h"
+#include "llvm/Function.h"
#include "llvm/iOther.h"
#include "Support/STLExtras.h"
#include <algorithm>
diff --git a/lib/Target/SparcV9/SparcV9RegInfo.cpp b/lib/Target/SparcV9/SparcV9RegInfo.cpp
index 89f699b..b5eef09 100644
--- a/lib/Target/SparcV9/SparcV9RegInfo.cpp
+++ b/lib/Target/SparcV9/SparcV9RegInfo.cpp
@@ -14,6 +14,7 @@
#include "llvm/Analysis/LiveVar/MethodLiveVarInfo.h"
#include "llvm/iTerminators.h"
#include "llvm/iOther.h"
+#include "llvm/Function.h"
#include "llvm/DerivedTypes.h"
#include <iostream>
using std::cerr;
diff --git a/lib/Transforms/TransformInternals.cpp b/lib/Transforms/TransformInternals.cpp
index a75aa57..e41f955 100644
--- a/lib/Transforms/TransformInternals.cpp
+++ b/lib/Transforms/TransformInternals.cpp
@@ -9,6 +9,7 @@
#include "llvm/Type.h"
#include "llvm/ConstantVals.h"
#include "llvm/Analysis/Expressions.h"
+#include "llvm/Function.h"
#include "llvm/iOther.h"
#include <algorithm>
diff --git a/lib/Transforms/Utils/LowerAllocations.cpp b/lib/Transforms/Utils/LowerAllocations.cpp
index 3345acd..42524c8 100644
--- a/lib/Transforms/Utils/LowerAllocations.cpp
+++ b/lib/Transforms/Utils/LowerAllocations.cpp
@@ -10,6 +10,7 @@
#include "llvm/Transforms/ChangeAllocations.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Module.h"
+#include "llvm/Function.h"
#include "llvm/DerivedTypes.h"
#include "llvm/iMemory.h"
#include "llvm/iOther.h"