[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/JIT.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Nov 20 15:51:15 PST 2004
Changes in directory llvm/lib/ExecutionEngine/JIT:
JIT.cpp updated: 1.47 -> 1.48
---
Log message:
This method does not exist any longer.
---
Diffs of the changes: (+0 -4)
Index: llvm/lib/ExecutionEngine/JIT/JIT.cpp
diff -u llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.47 llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.48
--- llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.47 Mon Nov 15 17:18:09 2004
+++ llvm/lib/ExecutionEngine/JIT/JIT.cpp Sat Nov 20 17:51:03 2004
@@ -274,10 +274,6 @@
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);
}
More information about the llvm-commits
mailing list