From: Eli Friedman Date: Fri, 4 Nov 2011 18:19:43 +0000 (+0000) Subject: Add a couple missing includes; found while analyzing LLVM headers. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=06138ac5690383166e1e4f6414af846911ae9c28;p=oota-llvm.git Add a couple missing includes; found while analyzing LLVM headers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143716 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/DefaultPasses.h b/include/llvm/DefaultPasses.h index 2e4145b5ebb..929569d543d 100644 --- a/include/llvm/DefaultPasses.h +++ b/include/llvm/DefaultPasses.h @@ -14,6 +14,8 @@ #ifndef LLVM_DEFAULT_PASS_SUPPORT_H #define LLVM_DEFAULT_PASS_SUPPORT_H +#include + namespace llvm { class PassManagerBase; diff --git a/include/llvm/PassAnalysisSupport.h b/include/llvm/PassAnalysisSupport.h index fede1216c3c..5c6a2d7a92f 100644 --- a/include/llvm/PassAnalysisSupport.h +++ b/include/llvm/PassAnalysisSupport.h @@ -19,6 +19,7 @@ #ifndef LLVM_PASS_ANALYSIS_SUPPORT_H #define LLVM_PASS_ANALYSIS_SUPPORT_H +#include "llvm/Pass.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include