diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-10-17 03:28:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-10-17 03:28:07 +0000 |
commit | 852942c7c83c65c39e3758423e7251e45067c596 (patch) | |
tree | d6274ba1c36bde67a3852385180930eec72ee61f /include/llvm | |
parent | bb39ea144fef229366341ab9636934e73de09b43 (diff) | |
download | external_llvm-852942c7c83c65c39e3758423e7251e45067c596.tar.gz external_llvm-852942c7c83c65c39e3758423e7251e45067c596.tar.bz2 external_llvm-852942c7c83c65c39e3758423e7251e45067c596.zip |
Add required #includes for freestanding .h files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84302 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Analysis/CallGraph.h | 3 | ||||
-rw-r--r-- | include/llvm/PassSupport.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Analysis/CallGraph.h b/include/llvm/Analysis/CallGraph.h index bcb6dee033..287fe4faa4 100644 --- a/include/llvm/Analysis/CallGraph.h +++ b/include/llvm/Analysis/CallGraph.h @@ -51,9 +51,10 @@ #ifndef LLVM_ANALYSIS_CALLGRAPH_H #define LLVM_ANALYSIS_CALLGRAPH_H +#include "llvm/Function.h" +#include "llvm/Pass.h" #include "llvm/ADT/GraphTraits.h" #include "llvm/ADT/STLExtras.h" -#include "llvm/Pass.h" #include "llvm/Support/CallSite.h" #include "llvm/Support/ValueHandle.h" #include "llvm/System/IncludeFile.h" diff --git a/include/llvm/PassSupport.h b/include/llvm/PassSupport.h index b5e581a6f4..d7f3097bdc 100644 --- a/include/llvm/PassSupport.h +++ b/include/llvm/PassSupport.h @@ -21,7 +21,7 @@ #ifndef LLVM_PASS_SUPPORT_H #define LLVM_PASS_SUPPORT_H -// No need to include Pass.h, we are being included by it! +#include "Pass.h" namespace llvm { |