IRAccess.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Oct 2014 22:27:09 +0000
changeset 44 840c68a91cdd
parent 43 c8afb8e4c3cc
permissions -rw-r--r--
Tests moved to separate subpackage to follow St/X conventions.

"{ Package: 'ctu:ircompiler' }"

IRInstruction subclass:#IRAccess
	instanceVariableNames:'number name'
	classVariableNames:''
	poolDictionaries:''
	category:'IR Compiler-IR'
!


!IRAccess methodsFor:'accessing'!

number

	^ number
!

number: num

	number _ num
! !

!IRAccess methodsFor:'testing'!

isRead
	^self isStore not
! !

!IRAccess class methodsFor:'documentation'!

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

version_SVN
    ^ '$Id::                                                                                                                        $'
! !