1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Reverting 85714, 85715, 85716, which are breaking the build

llvm-svn: 85717
This commit is contained in:
Douglas Gregor 2009-11-01 16:42:53 +00:00
parent 58714b62b6
commit 16c6819959
8 changed files with 3 additions and 15 deletions

View File

@ -52,13 +52,13 @@
#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/Support/CallSite.h"
#include "llvm/Support/ValueHandle.h"
#include "llvm/System/IncludeFile.h"
#include <map>
#include <vector>
namespace llvm {

View File

@ -147,13 +147,6 @@ namespace llvm {
//
LoopPass *createLoopDependenceAnalysisPass();
//===--------------------------------------------------------------------===//
//
// createScalarEvolutionPass - This creates an instance of the
// ScalarEvolution pass.
//
FunctionPass *createScalarEvolutionPass();
// Minor pass prototypes, allowing us to expose them through bugpoint and
// analyze.
FunctionPass *createInstCountPass();

View File

@ -17,9 +17,10 @@
#ifndef LLVM_PASSMANAGER_H
#define LLVM_PASSMANAGER_H
#include "llvm/Pass.h"
namespace llvm {
class Function;
class Pass;
class ModulePass;
class Module;

View File

@ -14,7 +14,6 @@
#ifndef LLVM_PASSMANAGERS_H
#define LLVM_PASSMANAGERS_H
#include "llvm/Pass.h"
#include "llvm/PassManager.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/SmallPtrSet.h"

View File

@ -13,7 +13,6 @@
//===----------------------------------------------------------------------===//
#include "llvm/Analysis/CallGraph.h"
#include "llvm/Pass.h"
#include "llvm/Module.h"
#include "llvm/Instructions.h"
#include "llvm/IntrinsicInst.h"

View File

@ -5151,8 +5151,6 @@ ScalarEvolution::SCEVCallbackVH::SCEVCallbackVH(Value *V, ScalarEvolution *se)
// ScalarEvolution Class Implementation
//===----------------------------------------------------------------------===//
FunctionPass *createScalarEvolutionPass() { return new ScalarEvolution(); }
ScalarEvolution::ScalarEvolution()
: FunctionPass(&ID) {
}

View File

@ -14,7 +14,6 @@
#include "llvm-c/Transforms/IPO.h"
#include "llvm/PassManager.h"
#include "llvm/Pass.h"
#include "llvm/Transforms/IPO.h"
using namespace llvm;

View File

@ -17,7 +17,6 @@
#include "llvm/LLVMContext.h"
#include "llvm/Module.h"
#include "llvm/PassManager.h"
#include "llvm/Pass.h"
#include "llvm/Assembly/AsmAnnotationWriter.h"
#include "llvm/Analysis/ProfileInfo.h"
#include "llvm/Analysis/ProfileInfoLoader.h"