[svn:parrot] r39359 - branches/pmc_i_ops/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Jun 3 13:33:33 UTC 2009


Author: bacek
Date: Wed Jun  3 13:33:33 2009
New Revision: 39359
URL: https://trac.parrot.org/parrot/changeset/39359

Log:
[pmc] Fix Integer.i_add(Complex).

Modified:
   branches/pmc_i_ops/src/pmc/integer.pmc

Modified: branches/pmc_i_ops/src/pmc/integer.pmc
==============================================================================
--- branches/pmc_i_ops/src/pmc/integer.pmc	Wed Jun  3 13:33:13 2009	(r39358)
+++ branches/pmc_i_ops/src/pmc/integer.pmc	Wed Jun  3 13:33:33 2009	(r39359)
@@ -614,7 +614,7 @@
 
     MULTI void i_multiply(Complex value) {
         upgrade_self_to_complex(INTERP, SELF);
-        VTABLE_multiply(INTERP, value, SELF, SELF);
+        VTABLE_i_multiply(INTERP, SELF, value);
     }
 
 


More information about the parrot-commits mailing list