[svn:parrot] r41868 - branches/pcc_reapply/tools/build
whiteknight at svn.parrot.org
whiteknight at svn.parrot.org
Thu Oct 15 01:56:37 UTC 2009
Author: whiteknight
Date: Thu Oct 15 01:56:33 2009
New Revision: 41868
URL: https://trac.parrot.org/parrot/changeset/41868
Log:
[pcc] invocants should have a signature of Pi in NCI calls, not just P. This doesn't affect any tests, but still is a change that needs to be made
Modified:
branches/pcc_reapply/tools/build/nativecall.pl
Modified: branches/pcc_reapply/tools/build/nativecall.pl
==============================================================================
--- branches/pcc_reapply/tools/build/nativecall.pl Thu Oct 15 01:28:06 2009 (r41867)
+++ branches/pcc_reapply/tools/build/nativecall.pl Thu Oct 15 01:56:33 2009 (r41868)
@@ -62,7 +62,7 @@
func_call_assign => ""
},
P => { as_proto => "PMC *", sig_char => "P" },
- O => { as_proto => "PMC *", returns => "", sig_char => "P" },
+ O => { as_proto => "PMC *", returns => "", sig_char => "Pi" },
J => { as_proto => "PARROT_INTERP", returns => "", sig_char => "" },
S => { as_proto => "STRING *", sig_char => "S" },
I => { as_proto => "INTVAL", sig_char => "I" },
More information about the parrot-commits
mailing list