LLVMDIBuilder.st
changeset 48 86d3a994614f
parent 42 23ae490859cd
child 55 41b3437f1fc7
equal deleted inserted replaced
47:d1d3901866d4 48:86d3a994614f
    39     a future.
    39     a future.
    40 "
    40 "
    41 ! !
    41 ! !
    42 
    42 
    43 !LLVMDIBuilder class methodsFor:'instance creation'!
    43 !LLVMDIBuilder class methodsFor:'instance creation'!
       
    44 
       
    45 new
       
    46     self shouldNotImplement. "/ use newForModule: instead
       
    47 
       
    48     "Created: / 05-10-2015 / 09:29:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    49 !
    44 
    50 
    45 newForModule: module
    51 newForModule: module
    46     | dib |
    52     | dib |
    47     dib := LLVMCEXT NewDIBuilder: module.
    53     dib := LLVMCEXT NewDIBuilder: module.
    48     "/ Now we have to add module flags otherwise llc won't
    54     "/ Now we have to add module flags otherwise llc won't
   276     ^ LLVMCEXT DIBuilderDestroy: self
   282     ^ LLVMCEXT DIBuilderDestroy: self
   277 
   283 
   278     "Modified: / 14-08-2015 / 13:20:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   284     "Modified: / 14-08-2015 / 13:20:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   279 ! !
   285 ! !
   280 
   286 
       
   287 !LLVMDIBuilder class methodsFor:'documentation'!
       
   288 
       
   289 version_HG
       
   290 
       
   291     ^ '$Changeset: <not expanded> $'
       
   292 ! !
       
   293