LLVMLinkage.st
changeset 14 c7dea3fcc5a7
parent 13 fa967c0e1827
equal deleted inserted replaced
13:fa967c0e1827 14:c7dea3fcc5a7
       
     1 "
       
     2     Copyright (C) 2015-now Jan Vrany
       
     3 
       
     4     This code is not an open-source (yet). You may use this code
       
     5     for your own experiments and projects, given that:
       
     6 
       
     7     * all modification to the code will be sent to the
       
     8       original author for inclusion in future releases
       
     9     * this is not used in any commercial software
       
    10 
       
    11     This license is provisional and may (will) change in
       
    12     a future.
       
    13 "
     1 "{ Package: 'jv:llvm_s' }"
    14 "{ Package: 'jv:llvm_s' }"
     2 
    15 
     3 "{ NameSpace: Smalltalk }"
    16 "{ NameSpace: Smalltalk }"
     4 
    17 
     5 SharedPool subclass:#LLVMLinkage
    18 SharedPool subclass:#LLVMLinkage
    12 		LLVMExternalWeakLinkage LLVMGhostLinkage LLVMCommonLinkage
    25 		LLVMExternalWeakLinkage LLVMGhostLinkage LLVMCommonLinkage
    13 		LLVMLinkerPrivateLinkage LLVMLinkerPrivateWeakLinkage'
    26 		LLVMLinkerPrivateLinkage LLVMLinkerPrivateWeakLinkage'
    14 	poolDictionaries:''
    27 	poolDictionaries:''
    15 	category:'LLVM-S-Core-Constants'
    28 	category:'LLVM-S-Core-Constants'
    16 !
    29 !
       
    30 
       
    31 !LLVMLinkage class methodsFor:'documentation'!
       
    32 
       
    33 copyright
       
    34 "
       
    35     Copyright (C) 2015-now Jan Vrany
       
    36 
       
    37     This code is not an open-source (yet). You may use this code
       
    38     for your own experiments and projects, given that:
       
    39 
       
    40     * all modification to the code will be sent to the
       
    41       original author for inclusion in future releases
       
    42     * this is not used in any commercial software
       
    43 
       
    44     This license is provisional and may (will) change in
       
    45     a future.
       
    46 "
       
    47 ! !
    17 
    48 
    18 !LLVMLinkage class methodsFor:'initialization'!
    49 !LLVMLinkage class methodsFor:'initialization'!
    19 
    50 
    20 initialize
    51 initialize
    21 
    52