[svn:parrot] r41601 - branches/pcc_reapply/src/ops
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Thu Oct 1 22:24:20 UTC 2009
Author: NotFound
Date: Thu Oct 1 22:24:19 2009
New Revision: 41601
URL: https://trac.parrot.org/parrot/changeset/41601
Log:
[core] fix a OFFSET problem, probably introduced in the merge
Modified:
branches/pcc_reapply/src/ops/core.ops
Modified: branches/pcc_reapply/src/ops/core.ops
==============================================================================
--- branches/pcc_reapply/src/ops/core.ops Thu Oct 1 22:19:56 2009 (r41600)
+++ branches/pcc_reapply/src/ops/core.ops Thu Oct 1 22:24:19 2009 (r41601)
@@ -526,7 +526,7 @@
Parrot_pcc_set_signature(interp, CURRENT_CONTEXT(interp), call_sig);
argc = VTABLE_elements(interp, signature);
- goto OFFSET(argc + 3);
+ goto OFFSET(argc + 2);
}
op get_results(inconst PMC) :flow {
More information about the parrot-commits
mailing list