diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-20 04:14:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-20 04:14:44 +0000 |
commit | a8b0fa5172dc46f53cf8b8ef1aa9c9b4e70ff998 (patch) | |
tree | 784f947c03cbd58f84bda614f6b79e0358e4decc /lib/Target/PowerPC/PPC64CodeEmitter.cpp | |
parent | 5be478f360b4c632d1adfccc64df87840e1ccfc1 (diff) |
getJITStubForFunction is optional and unimplemented, just remove it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18036 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPC64CodeEmitter.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPC64CodeEmitter.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/PowerPC/PPC64CodeEmitter.cpp b/lib/Target/PowerPC/PPC64CodeEmitter.cpp index d35ddde4b1..06f422c3d5 100644 --- a/lib/Target/PowerPC/PPC64CodeEmitter.cpp +++ b/lib/Target/PowerPC/PPC64CodeEmitter.cpp @@ -29,12 +29,6 @@ bool PPC64TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM, // PM.add(createMachineCodeDeleter()); } -void *PPC64JITInfo::getJITStubForFunction(Function *F, - MachineCodeEmitter &MCE) { - assert (0 && "PPC64JITInfo::getJITStubForFunction not implemented"); - return 0; -} - void PPC64JITInfo::replaceMachineCodeForFunction (void *Old, void *New) { assert (0 && "PPC64JITInfo::replaceMachineCodeForFunction not implemented"); } |