From: Daniel Dunbar Date: Sat, 17 Oct 2009 08:12:36 +0000 (+0000) Subject: Add another required #include for freestanding .h files. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=985577ec132a1dcfb057f157fb52b31e82544b16;p=oota-llvm.git Add another required #include for freestanding .h files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84322 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/PassAnalysisSupport.h b/include/llvm/PassAnalysisSupport.h index f339481c1ed..690d080491c 100644 --- a/include/llvm/PassAnalysisSupport.h +++ b/include/llvm/PassAnalysisSupport.h @@ -20,14 +20,13 @@ #define LLVM_PASS_ANALYSIS_SUPPORT_H #include +#include "llvm/Pass.h" #include "llvm/ADT/SmallVector.h" namespace llvm { class StringRef; -// No need to include Pass.h, we are being included by it! - //===----------------------------------------------------------------------===// // AnalysisUsage - Represent the analysis usage information of a pass. This // tracks analyses that the pass REQUIRES (must be available when the pass