IRTempStore.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Oct 2014 22:42:40 +0000
changeset 45 04a50b0d540a
parent 43 c8afb8e4c3cc
permissions -rw-r--r--
Reduced dependencies to only stx:libbasic and stx:libcomp. The latter will wanish as soon as actual bytecode assemby is implemented.

"{ Package: 'ctu:ircompiler' }"

IRTempAccess subclass:#IRTempStore
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'IR Compiler-IR'
!


!IRTempStore methodsFor:'interpret'!

executeOn: interpreter 
        interpreter storeTemp: number kind: kind level: level

    "Modified: / 30-03-2009 / 14:17:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!IRTempStore methodsFor:'testing'!

isRead
	^false
!

isStore
	^true
! !

!IRTempStore class methodsFor:'documentation'!

version_CVS
    ^ 'Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRTempStore.st,v 1.3 2009/10/08 12:04:11 fm Exp '
!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !