IRPop.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Oct 2014 22:18:24 +0000
changeset 42 acdc3ec6d152
parent 41 f3898a3b378d
child 43 c8afb8e4c3cc
permissions -rw-r--r--
Better class category name - IR Compiler-*

"{ Package: 'ctu:ircompiler' }"

IRInstruction subclass:#IRPop
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'IR Compiler-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::                                                                                                                        $'
! !