mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Delete FunctionPass::run, which is unused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110843 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -295,11 +295,6 @@ public:
|
||||
///
|
||||
virtual bool doFinalization(Module &);
|
||||
|
||||
/// run - On a function, we simply initialize, run the function, then
|
||||
/// finalize.
|
||||
///
|
||||
bool run(Function &F);
|
||||
|
||||
virtual void assignPassManager(PMStack &PMS,
|
||||
PassManagerType T);
|
||||
|
||||
|
@@ -141,17 +141,6 @@ Pass *FunctionPass::createPrinterPass(raw_ostream &O,
|
||||
return createPrintFunctionPass(Banner, &O);
|
||||
}
|
||||
|
||||
// run - On a function, we simply initialize, run the function, then finalize.
|
||||
//
|
||||
bool FunctionPass::run(Function &F) {
|
||||
// Passes are not run on external functions!
|
||||
if (F.isDeclaration()) return false;
|
||||
|
||||
bool Changed = doInitialization(*F.getParent());
|
||||
Changed |= runOnFunction(F);
|
||||
return Changed | doFinalization(*F.getParent());
|
||||
}
|
||||
|
||||
bool FunctionPass::doInitialization(Module &) {
|
||||
// By default, don't do anything.
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user