mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Make MachineFunctionPass::runOnFunction non-virtual. Subclasses override
the virtual function runOnMachineFunction instead. And add access specifiers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37924 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4304bcc1ed
commit
d27df628cc
@ -28,17 +28,20 @@ struct MachineFunctionPass : public FunctionPass {
|
||||
|
||||
explicit MachineFunctionPass(intptr_t ID) : FunctionPass(ID) {}
|
||||
|
||||
protected:
|
||||
/// runOnMachineFunction - This method must be overloaded to perform the
|
||||
/// desired machine code transformation or analysis.
|
||||
///
|
||||
virtual bool runOnMachineFunction(MachineFunction &MF) = 0;
|
||||
|
||||
public:
|
||||
// FIXME: This pass should declare that the pass does not invalidate any LLVM
|
||||
// passes.
|
||||
virtual bool runOnFunction(Function &F) {
|
||||
bool runOnFunction(Function &F) {
|
||||
return runOnMachineFunction(MachineFunction::get(&F));
|
||||
}
|
||||
|
||||
private:
|
||||
virtual void virtfn(); // out of line virtual fn to give class a home.
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user