diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-11-20 04:17:17 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-11-20 04:17:17 +0000 |
| commit | 6f01b4cf1fa18844aaca802aadd95364752aa676 (patch) | |
| tree | 4d1c27635d0f595e28a253aa41bb8e9f45a8eb13 | |
| parent | ae5ac03c1d70c99f6620935dbbfa9fd525cc32b9 (diff) | |
| download | bcm5719-llvm-6f01b4cf1fa18844aaca802aadd95364752aa676.tar.gz bcm5719-llvm-6f01b4cf1fa18844aaca802aadd95364752aa676.zip | |
Remove this method, it's not clear how it could be implemented indep of 32 or 64-bit mode
llvm-svn: 18038
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCJITInfo.h | 6 | ||||
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCJITInfo.h b/llvm/lib/Target/PowerPC/PowerPCJITInfo.h index 5c9bbb437c2..05c5b9a6d3f 100644 --- a/llvm/lib/Target/PowerPC/PowerPCJITInfo.h +++ b/llvm/lib/Target/PowerPC/PowerPCJITInfo.h @@ -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); }; } diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp index b25915e25a1..269ddaef078 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp @@ -138,12 +138,6 @@ void PowerPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) { assert(0 && "Cannot execute PowerPCJITInfo::replaceMachineCodeForFunction()"); } -void *PowerPCJITInfo::getJITStubForFunction(Function *F, - MachineCodeEmitter &MCE) { - assert(0 && "Cannot execute PowerPCJITInfo::getJITStubForFunction()"); - return 0; -} - /// PowerPCTargetMachine ctor - Create an ILP32 architecture model /// PPC32TargetMachine::PPC32TargetMachine(const Module &M, IntrinsicLowering *IL) |

