diff -r fa42d3f1a578 -r 10a95d798b36 compiler/TFunctionBinding.st --- a/compiler/TFunctionBinding.st Tue Sep 22 17:43:38 2015 +0100 +++ b/compiler/TFunctionBinding.st Wed Sep 23 22:21:44 2015 +0100 @@ -26,6 +26,20 @@ "Modified: / 02-09-2015 / 17:02:43 / Jan Vrany " ! ! +!TFunctionBinding methodsFor:'accesssing - llvm'! + +llvmValue + ^ self propertyAt: #llvmValue ifAbsent:[ nil ] + + "Created: / 23-09-2015 / 21:14:27 / Jan Vrany " +! + +llvmValue: anLLVMValue + self propertyAt: #llvmValue put: anLLVMValue + + "Created: / 23-09-2015 / 21:14:10 / Jan Vrany " +! ! + !TFunctionBinding methodsFor:'converting'! asLLVMValueInModule: aLLVMModule