Add required #includes for freestanding .h files.
authorDaniel Dunbar <daniel@zuster.org>
Sat, 17 Oct 2009 03:28:07 +0000 (03:28 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 17 Oct 2009 03:28:07 +0000 (03:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84302 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/CallGraph.h
include/llvm/PassSupport.h

index bcb6dee033dcd6dd1960e39bfd7aba336d07fb84..287fe4faa4f560a397c7637079ec0c72cfb5fb21 100644 (file)
 #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"
index b5e581a6f4e71d3a451272a3a12c600e9dad1149..d7f3097bdc8c4fc508304ffdd2f7601a4f40943c 100644 (file)
@@ -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 {