LLVMModuleProvider.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 31 Jul 2015 16:21:29 +0100
changeset 12 f98e97fd02ef
parent 1 e3dcb6272f0b
child 13 fa967c0e1827
permissions -rw-r--r--
Package renamed from jv:libllvms to jv:llvm_s

"{ Package: 'jv:llvm_s' }"

"{ NameSpace: Smalltalk }"

LLVMDisposableObject subclass:#LLVMModuleProvider
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'LLVM-Core'
!

!LLVMModuleProvider methodsFor:'initialization & release'!

dispose
    ^ LLVM DisposeModuleProvider: self

    "Modified: / 08-07-2015 / 22:40:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !