[svn:parrot] r38635 - branches/pmc_pct/compilers/pmcc/src

cotto at svn.parrot.org cotto at svn.parrot.org
Sat May 9 12:07:56 UTC 2009


Author: cotto
Date: Sat May  9 12:07:56 2009
New Revision: 38635
URL: https://trac.parrot.org/parrot/changeset/38635

Log:
[pmcc] fix test failure from previous commit

Modified:
   branches/pmc_pct/compilers/pmcc/src/nodes.pir

Modified: branches/pmc_pct/compilers/pmcc/src/nodes.pir
==============================================================================
--- branches/pmc_pct/compilers/pmcc/src/nodes.pir	Sat May  9 12:04:18 2009	(r38634)
+++ branches/pmc_pct/compilers/pmcc/src/nodes.pir	Sat May  9 12:07:56 2009	(r38635)
@@ -172,6 +172,7 @@
 
     .local pmc it, attr
     .local string type, name
+    .local int is_fp
 
     attrs = thaw $S0
     it = iter attrs
@@ -179,9 +180,10 @@
   iter_loop:
     unless it goto iter_done
     attr = shift it
-    name = attr['name']
-    type = attr['type']
-    self.'add_attr'(name, type)
+    name  = attr['name']
+    type  = attr['type']
+    is_fp = attr['is_fp']
+    self.'add_attr'(name, type, is_fp)
     goto iter_loop
 
   iter_done:


More information about the parrot-commits mailing list