mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Add an out-of-line virtual function to home class.
llvm-svn: 29154
This commit is contained in:
parent
0f2560a313
commit
ac585b37b1
@ -33,10 +33,11 @@ struct MachineFunctionPass : public FunctionPass {
|
||||
|
||||
// FIXME: This pass should declare that the pass does not invalidate any LLVM
|
||||
// passes.
|
||||
|
||||
virtual bool runOnFunction(Function &F) {
|
||||
return runOnMachineFunction(MachineFunction::get(&F));
|
||||
}
|
||||
|
||||
virtual void virtfn(); // out of line virtual fn to give class a home.
|
||||
};
|
||||
|
||||
} // End llvm namespace
|
||||
|
@ -38,6 +38,8 @@ using namespace llvm;
|
||||
static AnnotationID MF_AID(
|
||||
AnnotationManager::getID("CodeGen::MachineCodeForFunction"));
|
||||
|
||||
// Out of line virtual function to home classes.
|
||||
void MachineFunctionPass::virtfn() {}
|
||||
|
||||
namespace {
|
||||
struct VISIBILITY_HIDDEN Printer : public MachineFunctionPass {
|
||||
|
Loading…
x
Reference in New Issue
Block a user