[svn:parrot] r41919 - branches/pcc_reapply/src/call
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Sun Oct 18 04:19:25 UTC 2009
Author: mikehh
Date: Sun Oct 18 04:19:21 2009
New Revision: 41919
URL: https://trac.parrot.org/parrot/changeset/41919
Log:
codetest failures - unused assert macro and missing function docs
Modified:
branches/pcc_reapply/src/call/args.c
Modified: branches/pcc_reapply/src/call/args.c
==============================================================================
--- branches/pcc_reapply/src/call/args.c Sun Oct 18 01:58:19 2009 (r41918)
+++ branches/pcc_reapply/src/call/args.c Sun Oct 18 04:19:21 2009 (r41919)
@@ -2315,6 +2315,7 @@
Parrot_pcc_parse_signature_string(PARROT_INTERP, ARGIN(STRING *signature),
ARGMOD(PMC **arg_flags), ARGMOD(PMC **return_flags))
{
+ ASSERT_ARGS(Parrot_pcc_parse_signature_string)
char *s = Parrot_str_to_cstring(interp, signature);
*arg_flags = PMCNULL;
*return_flags = PMCNULL;
@@ -2349,8 +2350,10 @@
/*
-=item C<void Parrot_pcc_merge_signature_for_tailcall(PARROT_INTERP, PMC *parent,
-PMC *tailcall)>
+Get the appropriate argument value from the continuation
+
+=item C<static INTVAL intval_arg_from_continuation(PARROT_INTERP, PMC *cs,
+INTVAL arg_index)>
=item C<static FLOATVAL numval_arg_from_continuation(PARROT_INTERP, PMC *cs,
INTVAL arg_index)>
More information about the parrot-commits
mailing list