Add required #includes for freestanding .h files.

llvm-svn: 84302
This commit is contained in:
Daniel Dunbar 2009-10-17 03:28:07 +00:00
parent a80c07e8e6
commit 1fcdeb8e1b
2 changed files with 3 additions and 2 deletions

View File

@ -51,9 +51,10 @@
#ifndef LLVM_ANALYSIS_CALLGRAPH_H
#define LLVM_ANALYSIS_CALLGRAPH_H
#include "llvm/Function.h"
#include "llvm/Pass.h"
#include "llvm/ADT/GraphTraits.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Pass.h"
#include "llvm/Support/CallSite.h"
#include "llvm/Support/ValueHandle.h"
#include "llvm/System/IncludeFile.h"

View File

@ -21,7 +21,7 @@
#ifndef LLVM_PASS_SUPPORT_H
#define LLVM_PASS_SUPPORT_H
// No need to include Pass.h, we are being included by it!
#include "Pass.h"
namespace llvm {