[llvm-commits] [llvm] r84322 - /llvm/trunk/include/llvm/PassAnalysisSupport.h
Daniel Dunbar
daniel at zuster.org
Sat Oct 17 01:12:43 PDT 2009
Author: ddunbar
Date: Sat Oct 17 03:12:36 2009
New Revision: 84322
URL: http://llvm.org/viewvc/llvm-project?rev=84322&view=rev
Log:
Add another required #include for freestanding .h files.
Modified:
llvm/trunk/include/llvm/PassAnalysisSupport.h
Modified: llvm/trunk/include/llvm/PassAnalysisSupport.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/PassAnalysisSupport.h?rev=84322&r1=84321&r2=84322&view=diff
==============================================================================
--- llvm/trunk/include/llvm/PassAnalysisSupport.h (original)
+++ llvm/trunk/include/llvm/PassAnalysisSupport.h Sat Oct 17 03:12:36 2009
@@ -20,14 +20,13 @@
#define LLVM_PASS_ANALYSIS_SUPPORT_H
#include <vector>
+#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
More information about the llvm-commits
mailing list