LLVMExamples.st
changeset 76 a1cd10a34b21
parent 73 466c492b0062
child 78 7a4c769a9fea
--- a/LLVMExamples.st	Wed Aug 24 15:00:24 2016 +0100
+++ b/LLVMExamples.st	Fri Aug 26 21:50:03 2016 +0100
@@ -649,6 +649,7 @@
 
 
     jit := LLVMExecutionEngine newForModule:module.
+    jit processAllSections: true.
     externalFunction := jit externalOfFunction:function.
     self assert:(externalFunction callWith:5) == 120.
     self assert:(externalFunction callWith:1) == 1.
@@ -657,8 +658,7 @@
      LLVMExamples example7_factorial_with_debug_info"
 
     "Created: / 14-08-2015 / 06:46:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 06-02-2016 / 15:28:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (comment): / 21-04-2016 / 21:37:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 26-08-2016 / 15:48:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 example8_data_at_fixed_address