[svn:parrot] r39249 - trunk/src/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sat May 30 01:15:10 UTC 2009
Author: bacek
Date: Sat May 30 01:15:09 2009
New Revision: 39249
URL: https://trac.parrot.org/parrot/changeset/39249
Log:
[pmc] Scalar.bitwise_xor isn't MULTI.
Modified:
trunk/src/pmc/scalar.pmc
Modified: trunk/src/pmc/scalar.pmc
==============================================================================
--- trunk/src/pmc/scalar.pmc Sat May 30 01:09:06 2009 (r39248)
+++ trunk/src/pmc/scalar.pmc Sat May 30 01:15:09 2009 (r39249)
@@ -866,7 +866,7 @@
return dest;
}
- MULTI PMC *bitwise_xor_int(INTVAL value, PMC *dest) {
+ VTABLE PMC *bitwise_xor_int(INTVAL value, PMC *dest) {
const INTVAL result = SELF.get_integer() ^ value;
dest = pmc_new(INTERP, VTABLE_type(INTERP, SELF));
More information about the parrot-commits
mailing list