mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Delete FunctionPass::runOnModule, which is unused.
llvm-svn: 110842
This commit is contained in:
parent
54027cf446
commit
18a8add4ab
@ -295,12 +295,6 @@ public:
|
||||
///
|
||||
virtual bool doFinalization(Module &);
|
||||
|
||||
/// runOnModule - On a module, we run this pass by initializing,
|
||||
/// ronOnFunction'ing once for every function in the module, then by
|
||||
/// finalizing.
|
||||
///
|
||||
virtual bool runOnModule(Module &M);
|
||||
|
||||
/// run - On a function, we simply initialize, run the function, then
|
||||
/// finalize.
|
||||
///
|
||||
|
@ -141,19 +141,6 @@ Pass *FunctionPass::createPrinterPass(raw_ostream &O,
|
||||
return createPrintFunctionPass(Banner, &O);
|
||||
}
|
||||
|
||||
// run - On a module, we run this pass by initializing, runOnFunction'ing once
|
||||
// for every function in the module, then by finalizing.
|
||||
//
|
||||
bool FunctionPass::runOnModule(Module &M) {
|
||||
bool Changed = doInitialization(M);
|
||||
|
||||
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
||||
if (!I->isDeclaration()) // Passes are not run on external functions!
|
||||
Changed |= runOnFunction(*I);
|
||||
|
||||
return Changed | doFinalization(M);
|
||||
}
|
||||
|
||||
// run - On a function, we simply initialize, run the function, then finalize.
|
||||
//
|
||||
bool FunctionPass::run(Function &F) {
|
||||
|
Loading…
Reference in New Issue
Block a user