mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-31 17:42:40 +00:00
Reverting 85714, 85715, 85716, which are breaking the build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2166f62290
commit
076124ef26
@ -52,13 +52,13 @@
|
|||||||
#define LLVM_ANALYSIS_CALLGRAPH_H
|
#define LLVM_ANALYSIS_CALLGRAPH_H
|
||||||
|
|
||||||
#include "llvm/Function.h"
|
#include "llvm/Function.h"
|
||||||
|
#include "llvm/Pass.h"
|
||||||
#include "llvm/ADT/GraphTraits.h"
|
#include "llvm/ADT/GraphTraits.h"
|
||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/Support/CallSite.h"
|
#include "llvm/Support/CallSite.h"
|
||||||
#include "llvm/Support/ValueHandle.h"
|
#include "llvm/Support/ValueHandle.h"
|
||||||
#include "llvm/System/IncludeFile.h"
|
#include "llvm/System/IncludeFile.h"
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
@ -147,13 +147,6 @@ namespace llvm {
|
|||||||
//
|
//
|
||||||
LoopPass *createLoopDependenceAnalysisPass();
|
LoopPass *createLoopDependenceAnalysisPass();
|
||||||
|
|
||||||
//===--------------------------------------------------------------------===//
|
|
||||||
//
|
|
||||||
// createScalarEvolutionPass - This creates an instance of the
|
|
||||||
// ScalarEvolution pass.
|
|
||||||
//
|
|
||||||
FunctionPass *createScalarEvolutionPass();
|
|
||||||
|
|
||||||
// Minor pass prototypes, allowing us to expose them through bugpoint and
|
// Minor pass prototypes, allowing us to expose them through bugpoint and
|
||||||
// analyze.
|
// analyze.
|
||||||
FunctionPass *createInstCountPass();
|
FunctionPass *createInstCountPass();
|
||||||
|
@ -17,9 +17,10 @@
|
|||||||
#ifndef LLVM_PASSMANAGER_H
|
#ifndef LLVM_PASSMANAGER_H
|
||||||
#define LLVM_PASSMANAGER_H
|
#define LLVM_PASSMANAGER_H
|
||||||
|
|
||||||
|
#include "llvm/Pass.h"
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
class Function;
|
|
||||||
class Pass;
|
class Pass;
|
||||||
class ModulePass;
|
class ModulePass;
|
||||||
class Module;
|
class Module;
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
#ifndef LLVM_PASSMANAGERS_H
|
#ifndef LLVM_PASSMANAGERS_H
|
||||||
#define LLVM_PASSMANAGERS_H
|
#define LLVM_PASSMANAGERS_H
|
||||||
|
|
||||||
#include "llvm/Pass.h"
|
|
||||||
#include "llvm/PassManager.h"
|
#include "llvm/PassManager.h"
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
#include "llvm/ADT/SmallPtrSet.h"
|
#include "llvm/ADT/SmallPtrSet.h"
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/Analysis/CallGraph.h"
|
#include "llvm/Analysis/CallGraph.h"
|
||||||
#include "llvm/Pass.h"
|
|
||||||
#include "llvm/Module.h"
|
#include "llvm/Module.h"
|
||||||
#include "llvm/Instructions.h"
|
#include "llvm/Instructions.h"
|
||||||
#include "llvm/IntrinsicInst.h"
|
#include "llvm/IntrinsicInst.h"
|
||||||
|
@ -5151,8 +5151,6 @@ ScalarEvolution::SCEVCallbackVH::SCEVCallbackVH(Value *V, ScalarEvolution *se)
|
|||||||
// ScalarEvolution Class Implementation
|
// ScalarEvolution Class Implementation
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
FunctionPass *createScalarEvolutionPass() { return new ScalarEvolution(); }
|
|
||||||
|
|
||||||
ScalarEvolution::ScalarEvolution()
|
ScalarEvolution::ScalarEvolution()
|
||||||
: FunctionPass(&ID) {
|
: FunctionPass(&ID) {
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
#include "llvm-c/Transforms/IPO.h"
|
#include "llvm-c/Transforms/IPO.h"
|
||||||
#include "llvm/PassManager.h"
|
#include "llvm/PassManager.h"
|
||||||
#include "llvm/Pass.h"
|
|
||||||
#include "llvm/Transforms/IPO.h"
|
#include "llvm/Transforms/IPO.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
#include "llvm/LLVMContext.h"
|
#include "llvm/LLVMContext.h"
|
||||||
#include "llvm/Module.h"
|
#include "llvm/Module.h"
|
||||||
#include "llvm/PassManager.h"
|
#include "llvm/PassManager.h"
|
||||||
#include "llvm/Pass.h"
|
|
||||||
#include "llvm/Assembly/AsmAnnotationWriter.h"
|
#include "llvm/Assembly/AsmAnnotationWriter.h"
|
||||||
#include "llvm/Analysis/ProfileInfo.h"
|
#include "llvm/Analysis/ProfileInfo.h"
|
||||||
#include "llvm/Analysis/ProfileInfoLoader.h"
|
#include "llvm/Analysis/ProfileInfoLoader.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user