mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-06 04:09:04 +00:00
Correct comments
Don't include InstLoops.h Don't export factory functions for these passes llvm-svn: 8373
This commit is contained in:
parent
e26fb3c866
commit
5d6ee8cf02
@ -1,10 +1,9 @@
|
||||
//===-- InstLoops.cpp ---------------------------------------- ---*- C++ -*--=//
|
||||
//===-- CombineBranch.cpp ------------------------------------ ---*- C++ -*--=//
|
||||
// Pass to instrument loops
|
||||
//
|
||||
// At every backedge, insert a counter for that backedge and a call function
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Reoptimizer/InstLoops.h"
|
||||
#include "llvm/Analysis/Dominators.h"
|
||||
#include "llvm/Support/CFG.h"
|
||||
#include "llvm/Constants.h"
|
||||
@ -46,13 +45,6 @@ namespace{
|
||||
RegisterOpt<CombineBranches> X("branch-combine", "Multiple backedges going to same target are merged");
|
||||
}
|
||||
|
||||
// Create a new pass to merge branches
|
||||
//
|
||||
Pass *createCombineBranchesPass() {
|
||||
return new CombineBranches();
|
||||
}
|
||||
|
||||
|
||||
//helper function to get back edges: it is called by
|
||||
//the "getBackEdges" function below
|
||||
void CombineBranches::getBackEdgesVisit(BasicBlock *u,
|
||||
|
@ -4,7 +4,6 @@
|
||||
// At every backedge, insert a counter for that backedge and a call function
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Reoptimizer/InstLoops.h"
|
||||
#include "llvm/Analysis/Dominators.h"
|
||||
#include "llvm/Support/CFG.h"
|
||||
#include "llvm/Constants.h"
|
||||
@ -49,13 +48,6 @@ namespace{
|
||||
RegisterOpt<InstLoops> X("instloops", "Instrument backedges for profiling");
|
||||
}
|
||||
|
||||
// createInstLoopsPass - Create a new pass to add path profiling
|
||||
//
|
||||
Pass *createInstLoopsPass() {
|
||||
return new InstLoops();
|
||||
}
|
||||
|
||||
|
||||
//helper function to get back edges: it is called by
|
||||
//the "getBackEdges" function below
|
||||
void InstLoops::getBackEdgesVisit(BasicBlock *u,
|
||||
|
Loading…
x
Reference in New Issue
Block a user