[svn:parrot] r41686 - branches/pcc_reapply/src/call

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sun Oct 4 12:53:51 UTC 2009


Author: whiteknight
Date: Sun Oct  4 12:53:51 2009
New Revision: 41686
URL: https://trac.parrot.org/parrot/changeset/41686

Log:
[pcc] small aesthetic fixes

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  4 12:53:25 2009	(r41685)
+++ branches/pcc_reapply/src/call/args.c	Sun Oct  4 12:53:51 2009	(r41686)
@@ -712,16 +712,16 @@
 {
     ASSERT_ARGS(fill_params)
     PMC    *ctx = CURRENT_CONTEXT(interp);
-    INTVAL  param_count    = VTABLE_elements(interp, raw_sig);
+    INTVAL  param_count      = VTABLE_elements(interp, raw_sig);
     INTVAL  positional_elements;
-    STRING *param_name     = NULL;
-    INTVAL  param_index    = 0;
+    STRING *param_name       = NULL;
+    INTVAL  param_index      = 0;
     INTVAL  positional_index = 0;
-    INTVAL  named_count    = 0;
-    INTVAL  slurpy_count   = 0;
-    INTVAL  optional_count = 0;
-    INTVAL  err_check      = 0;
-    INTVAL  got_optional   = -1;
+    INTVAL  named_count      = 0;
+    INTVAL  slurpy_count     = 0;
+    INTVAL  optional_count   = 0;
+    INTVAL  err_check        = 0;
+    INTVAL  got_optional     = -1;
 
     /* Check if we should be throwing errors. This is configured separately
      * for parameters and return values. */
@@ -959,6 +959,7 @@
 
     fill_params(interp, call_object, raw_sig, raw_params, &function_pointers);
 }
+
 /*
 
 =item C<void Parrot_pcc_fill_params_from_c_args(PARROT_INTERP, PMC *call_object,


More information about the parrot-commits mailing list