aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-20 23:51:03 +0000
committerChris Lattner <sabre@nondot.org>2004-11-20 23:51:03 +0000
commit3c600c8346ddbd7eae9e07ea0cacad4ac2859237 (patch)
tree8c4dacd362a5645afb3f7ac6cfcc25515e221fac /lib/ExecutionEngine
parentf3ae06ee1f257ff847200d51ed795bba2399e9a2 (diff)
This method does not exist any longer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18061 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/JIT/JIT.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp
index 71f1dd0d6b..56625d691d 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);
}