summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-11-04 18:19:43 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-11-04 18:19:43 +0000
commit06138ac5690383166e1e4f6414af846911ae9c28 (patch)
treeb83fbb3cbe0cd09195940443998278c06835a1b1
parentb39e25ef2c8d8c840ec4155e57c737ac7bd4f167 (diff)
downloadllvm-06138ac5690383166e1e4f6414af846911ae9c28.tar.gz
llvm-06138ac5690383166e1e4f6414af846911ae9c28.tar.bz2
llvm-06138ac5690383166e1e4f6414af846911ae9c28.tar.xz
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
-rw-r--r--include/llvm/DefaultPasses.h2
-rw-r--r--include/llvm/PassAnalysisSupport.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/DefaultPasses.h b/include/llvm/DefaultPasses.h
index 2e4145b5eb..929569d543 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 <llvm/PassSupport.h>
+
namespace llvm {
class PassManagerBase;
diff --git a/include/llvm/PassAnalysisSupport.h b/include/llvm/PassAnalysisSupport.h
index fede1216c3..5c6a2d7a92 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 <vector>