IRConstant.st
changeset 42 acdc3ec6d152
parent 41 f3898a3b378d
child 43 c8afb8e4c3cc
equal deleted inserted replaced
41:f3898a3b378d 42:acdc3ec6d152
     2 
     2 
     3 IRInstruction subclass:#IRConstant
     3 IRInstruction subclass:#IRConstant
     4 	instanceVariableNames:'constant type'
     4 	instanceVariableNames:'constant type'
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'NewCompiler-IR'
     7 	category:'IR Compiler-IR'
     8 !
     8 !
     9 
     9 
    10 IRConstant comment:'Instruction "pushLiteral: object"'
    10 IRConstant comment:'Instruction "pushLiteral: object"'
    11 !
    11 !
    12 
    12 
    69 !
    69 !
    70 
    70 
    71 version_SVN
    71 version_SVN
    72     ^ '$Id::                                                                                                                        $'
    72     ^ '$Id::                                                                                                                        $'
    73 ! !
    73 ! !
       
    74