[svn:parrot] r40612 - branches/pcc_arg_unify/src
allison at svn.parrot.org
allison at svn.parrot.org
Tue Aug 18 00:24:59 UTC 2009
Author: allison
Date: Tue Aug 18 00:24:59 2009
New Revision: 40612
URL: https://trac.parrot.org/parrot/changeset/40612
Log:
[pcc] Conversion that didn't apply in the patch from the 'pcc_rewiring'
branch.
Modified:
branches/pcc_arg_unify/src/scheduler.c
Modified: branches/pcc_arg_unify/src/scheduler.c
==============================================================================
--- branches/pcc_arg_unify/src/scheduler.c Tue Aug 18 00:13:40 2009 (r40611)
+++ branches/pcc_arg_unify/src/scheduler.c Tue Aug 18 00:24:59 2009 (r40612)
@@ -140,8 +140,8 @@
PMC * const handler = Parrot_cx_find_handler_for_task(interp, task);
if (!PMC_IS_NULL(handler)) {
PMC * const handler_sub = VTABLE_get_attr_str(interp, handler, CONST_STRING(interp, "code"));
- Parrot_runops_fromc_args_event(interp, handler_sub,
- "vPP", handler, task);
+ Parrot_pcc_invoke_sub_from_c_args(interp, handler_sub,
+ "PP->", handler, task);
}
}
else {
More information about the parrot-commits
mailing list