IRPop.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 29 Mar 2012 18:03:58 +0000
changeset 37 be8c2dd09dff
parent 26 db19d89eef60
child 41 f3898a3b378d
permissions -rw-r--r--
Build files regenerated

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

IRInstruction subclass:#IRPop
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'NewCompiler-IR'
!

IRPop comment:'Instruction "popTop"'
!


!IRPop methodsFor:'interpret'!

executeOn: interpreter

	^ interpreter popTop
! !

!IRPop methodsFor:'testing'!

isPop
	^true
! !

!IRPop class methodsFor:'documentation'!

version
    ^ '$Id$'
!

version_CVS
    ^ '§Header: /cvs/stx/cvut/stx/goodies/newcompiler/IRPop.st,v 1.3 2009/10/08 11:57:32 fm Exp §'
!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !