[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/JIT.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Dec 4 23:00:12 PST 2004



Changes in directory llvm/lib/ExecutionEngine/JIT:

JIT.cpp updated: 1.50 -> 1.51
---
Log message:

Revert this patch, it broke a ton of programs.


---
Diffs of the changes:  (+0 -4)

Index: llvm/lib/ExecutionEngine/JIT/JIT.cpp
diff -u llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.50 llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.51
--- llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.50	Sat Dec  4 19:51:20 2004
+++ llvm/lib/ExecutionEngine/JIT/JIT.cpp	Sun Dec  5 00:59:59 2004
@@ -274,10 +274,6 @@
   if (void *Addr = getPointerToGlobalIfAvailable(F))
     return Addr;
 
-  // Get a stub if the target supports it
-  if (void *Addr = TJI.emitFunctionStub(F, *MCE))
-    return Addr;
-
   // Otherwise, if the target doesn't support it, just codegen the function.
   return getPointerToFunction(F);
 }






More information about the llvm-commits mailing list