getJITStubForFunction is optional and unimplemented, just remove it for now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18037 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-11-20 04:15:38 +00:00
parent a8b0fa5172
commit b443bc0da7
2 changed files with 0 additions and 12 deletions

View File

@ -25,12 +25,6 @@ bool SkeletonTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
return true; // Not implemented yet!
}
void *SkeletonJITInfo::getJITStubForFunction(Function *F,
MachineCodeEmitter &MCE) {
assert (0 && "getJITStubForFunction not implemented");
return 0;
}
void SkeletonJITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
assert (0 && "replaceMachineCodeForFunction not implemented");
}

View File

@ -37,12 +37,6 @@ namespace llvm {
/// code.
///
virtual void replaceMachineCodeForFunction(void *Old, void *New);
/// getJITStubForFunction - Create or return a stub for the specified
/// function. This stub acts just like the specified function, except that
/// it allows the "address" of the function to be taken without having to
/// generate code for it.
virtual void *getJITStubForFunction(Function *F, MachineCodeEmitter &MCE);
};
}