mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-23 22:23:00 +00:00
Eliminate the cfg namespace, moving LoopInfo, Dominators, Interval* classes
to the global namespace git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2370 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -33,7 +33,7 @@ static Instruction *InsertCast(Instruction *Val, const Type *Ty,
|
||||
return Cast;
|
||||
}
|
||||
|
||||
static bool TransformLoop(cfg::LoopInfo *Loops, cfg::Loop *Loop) {
|
||||
static bool TransformLoop(LoopInfo *Loops, Loop *Loop) {
|
||||
// Transform all subloops before this loop...
|
||||
bool Changed = reduce_apply_bool(Loop->getSubLoops().begin(),
|
||||
Loop->getSubLoops().end(),
|
||||
@@ -187,7 +187,7 @@ static bool TransformLoop(cfg::LoopInfo *Loops, cfg::Loop *Loop) {
|
||||
return Changed;
|
||||
}
|
||||
|
||||
static bool doit(Function *M, cfg::LoopInfo &Loops) {
|
||||
static bool doit(Function *M, LoopInfo &Loops) {
|
||||
// Induction Variables live in the header nodes of the loops of the function
|
||||
return reduce_apply_bool(Loops.getTopLevelLoops().begin(),
|
||||
Loops.getTopLevelLoops().end(),
|
||||
@@ -198,11 +198,11 @@ static bool doit(Function *M, cfg::LoopInfo &Loops) {
|
||||
namespace {
|
||||
struct InductionVariableSimplify : public FunctionPass {
|
||||
virtual bool runOnFunction(Function *F) {
|
||||
return doit(F, getAnalysis<cfg::LoopInfo>());
|
||||
return doit(F, getAnalysis<LoopInfo>());
|
||||
}
|
||||
|
||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.addRequired(cfg::LoopInfo::ID);
|
||||
AU.addRequired(LoopInfo::ID);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user