IRDup.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 13 May 2009 09:30:49 +0000
changeset 19 3bb7360f9dff
parent 1 0dd36941955f
child 23 377bc46cad12
permissions -rw-r--r--
- method stackSize is now correctly initialized - #makeBlock offsets are now patched when serializing basic blocks

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

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

IRDup comment:'Instruction "pushDup"'
!


!IRDup methodsFor:'interpret'!

executeOn: interpreter

	^ interpreter pushDup
! !

!IRDup class methodsFor:'documentation'!

version
    ^'$Id$'
! !