Remove this method, it's not clear how it could be implemented indep of 32 or 64...
authorChris Lattner <sabre@nondot.org>
Sat, 20 Nov 2004 04:17:17 +0000 (04:17 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 20 Nov 2004 04:17:17 +0000 (04:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18038 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCJITInfo.h
lib/Target/PowerPC/PPCTargetMachine.cpp

index 5c9bbb437c23203173d5d6a2377d88282e615fb2..05c5b9a6d3fe15e7e16c4e248bb0272ecd00b8d8 100644 (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);
   };
 }
 
index b25915e25a1a7c9da8c24e3dbf96722fa2dcd3da..269ddaef0780c4f8638ea5fc437e6e4bbce690ea 100644 (file)
@@ -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)