Author: bernhard
Date: Thu Nov 10 15:40:39 2005
New Revision: 9896

Modified:
   trunk/languages/bf/bfc.pir
   trunk/languages/bf/bfco.pir
Log:
Let languages/bf no longer use the 'compile' op.


Modified: trunk/languages/bf/bfc.pir
==============================================================================
--- trunk/languages/bf/bfc.pir  (original)
+++ trunk/languages/bf/bfc.pir  Thu Nov 10 15:40:39 2005
@@ -251,7 +251,6 @@ NEXT:
 
   # Now actually run it
   compreg P1, "PASM"
-  compile P0, P1, code
-  invoke
-  end
+  P0 = P1( code )
+  P0()
 .end

Modified: trunk/languages/bf/bfco.pir
==============================================================================
--- trunk/languages/bf/bfco.pir (original)
+++ trunk/languages/bf/bfco.pir Thu Nov 10 15:40:39 2005
@@ -262,8 +262,8 @@ NEXT:
 
   # Now actually run it
   compreg P1, "PASM"
-  compile P0, P1, code
-  invoke
+  P0 = P1( code )
+  P0()
   end
 debug:
   ret

Reply via email to