LLVMIRBuilder.st
changeset 64 70dd75ab337c
parent 63 923ad3de94f3
child 66 0125c050d0f1
equal deleted inserted replaced
63:923ad3de94f3 64:70dd75ab337c
   454     ^ LLVM BuildLoad: self _: pointer _: name
   454     ^ LLVM BuildLoad: self _: pointer _: name
   455 
   455 
   456     "Created: / 10-08-2015 / 06:45:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   456     "Created: / 10-08-2015 / 06:45:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   457 !
   457 !
   458 
   458 
   459 store: value _: pointer
   459 store:value at:pointer 
   460     self assertIsValue: value.
   460     self assertIsValue:value.
   461     self assertIsValue: pointer.
   461     self assertIsValue:pointer.
   462 
   462     ^ LLVM 
   463     ^ LLVM BuildStore: self  _: value _: pointer
   463         BuildStore:self
       
   464         _:value
       
   465         _:pointer
   464 
   466 
   465     "Created: / 10-08-2015 / 06:45:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   467     "Created: / 10-08-2015 / 06:45:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   466 ! !
   468 ! !
   467 
   469 
   468 !LLVMIRBuilder methodsFor:'instructions - other'!
   470 !LLVMIRBuilder methodsFor:'instructions - other'!