[svn:parrot] r39894 - trunk/compilers/pct/src/PAST

pmichaud at svn.parrot.org pmichaud at svn.parrot.org
Mon Jul 6 03:33:46 UTC 2009


Author: pmichaud
Date: Mon Jul  6 03:33:42 2009
New Revision: 39894
URL: https://trac.parrot.org/parrot/changeset/39894

Log:
[pct]:  Fix 'value' -> 'lvalue', from TT #810 (reported by Austin Hastings)

Modified:
   trunk/compilers/pct/src/PAST/Node.pir

Modified: trunk/compilers/pct/src/PAST/Node.pir
==============================================================================
--- trunk/compilers/pct/src/PAST/Node.pir	Sun Jul  5 22:12:36 2009	(r39893)
+++ trunk/compilers/pct/src/PAST/Node.pir	Mon Jul  6 03:33:42 2009	(r39894)
@@ -162,7 +162,7 @@
     unless value goto normal
     die "Unable to set lvalue on PAST::Val node"
   normal:
-    .tailcall self.'attr'('value', value, has_value)
+    .tailcall self.'attr'('lvalue', value, has_value)
 .end
 
 =back


More information about the parrot-commits mailing list