From: Chris Lattner Date: Sat, 20 Nov 2004 23:51:03 +0000 (+0000) Subject: This method does not exist any longer. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3c600c8346ddbd7eae9e07ea0cacad4ac2859237;p=oota-llvm.git This method does not exist any longer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18061 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 71f1dd0d6b3..56625d691d8 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -274,10 +274,6 @@ void *JIT::getPointerToFunctionOrStub(Function *F) { if (void *Addr = getPointerToGlobalIfAvailable(F)) return Addr; - // If the target supports "stubs" for functions, get a stub now. - if (void *Ptr = TJI.getJITStubForFunction(F, *MCE)) - return Ptr; - // Otherwise, if the target doesn't support it, just codegen the function. return getPointerToFunction(F); }