[svn:parrot] r41531 - trunk/src/call

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sun Sep 27 16:37:26 UTC 2009


Author: NotFound
Date: Sun Sep 27 16:37:26 2009
New Revision: 41531
URL: https://trac.parrot.org/parrot/changeset/41531

Log:
[cage] fix C90 violation

Modified:
   trunk/src/call/context.c

Modified: trunk/src/call/context.c
==============================================================================
--- trunk/src/call/context.c	Sun Sep 27 16:32:06 2009	(r41530)
+++ trunk/src/call/context.c	Sun Sep 27 16:37:26 2009	(r41531)
@@ -797,8 +797,8 @@
 Parrot_pcc_set_results_signature(PARROT_INTERP, ARGIN(PMC *ctx), ARGIN_NULLOK(PMC *sig))
 {
     ASSERT_ARGS(Parrot_pcc_set_results_signature)
-    PARROT_ASSERT(PMC_IS_NULL(sig) || PObj_is_PMC_TEST(sig));
     Parrot_Context *c = get_context_struct_fast(interp, ctx);
+    PARROT_ASSERT(PMC_IS_NULL(sig) || PObj_is_PMC_TEST(sig));
     c->results_signature = sig;
 }
 


More information about the parrot-commits mailing list