IRInstruction.st
changeset 10 0fd549e0c784
parent 9 04518c7fb91c
child 23 377bc46cad12
--- a/IRInstruction.st	Mon Mar 30 14:47:18 2009 +0000
+++ b/IRInstruction.st	Mon Mar 30 17:49:01 2009 +0000
@@ -51,13 +51,6 @@
 		type: #block
 !
 
-pushBlockMethod: irMethod
-
-	^ IRConstant new
-		constant: irMethod;
-		type: #blockMethod
-!
-
 pushDup
 
 	^ IRDup new
@@ -87,17 +80,6 @@
     "Modified: / 30-03-2009 / 14:08:49 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
-pushTemp: index
-
-    <resource: #obsolete>
-    self obsoleteMethodWarning:'Use pushTemp:kind: instead'.
-
-    ^ IRTempRead new
-            number: index.
-
-    "Modified: / 30-03-2009 / 11:51:29 / Jan Vrany <vranyj1@fel.cvut.cz>"
-!
-
 pushTemp: index kind: kind 
 
         ^ self pushTemp: index kind: kind level: 0
@@ -180,17 +162,6 @@
 		association: object
 !
 
-storeTemp: index
-
-    <resource: #obsolete>
-    self obsoleteMethodWarning:'Use storeTemp:kind: instead'.
-
-    ^ IRTempStore new
-            number: index.
-
-    "Modified: / 30-03-2009 / 11:52:02 / Jan Vrany <vranyj1@fel.cvut.cz>"
-!
-
 storeTemp: index kind: kind level: level
 
         ^ IRTempStore new