IRTempRead.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 03 Nov 2008 17:02:40 +0000
changeset 3 c9845c180bd4
parent 1 0dd36941955f
child 9 04518c7fb91c
permissions -rw-r--r--
Fixes IRBytecodeGenerator >> #pushLiteral and IRBuilder >> #jumpAheadTo:

"{ Package: 'stx:goodies/newcompiler' }"

IRTempAccess subclass:#IRTempRead
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'NewCompiler-IR'
!


!IRTempRead methodsFor:'interpret'!

executeOn: interpreter
	interpreter pushTemp: number.
! !

!IRTempRead methodsFor:'testing'!

isRead
	^true
!

isStore
	^false
! !

!IRTempRead class methodsFor:'documentation'!

version
    ^'$Id$'
! !