1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Add a couple missing includes; found while analyzing LLVM headers.

llvm-svn: 143716
This commit is contained in:
Eli Friedman 2011-11-04 18:19:43 +00:00
parent afdb17e3d2
commit ef8abc0e6d
2 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,8 @@
#ifndef LLVM_DEFAULT_PASS_SUPPORT_H
#define LLVM_DEFAULT_PASS_SUPPORT_H
#include <llvm/PassSupport.h>
namespace llvm {
class PassManagerBase;

View File

@ -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>