[svn:parrot] r41659 - branches/pcc_reapply/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sun Oct 4 01:08:33 UTC 2009


Author: mikehh
Date: Sun Oct  4 01:08:32 2009
New Revision: 41659
URL: https://trac.parrot.org/parrot/changeset/41659

Log:
codetest failure - trailing spaces

Modified:
   branches/pcc_reapply/src/extend.c

Modified: branches/pcc_reapply/src/extend.c
==============================================================================
--- branches/pcc_reapply/src/extend.c	Sat Oct  3 23:55:21 2009	(r41658)
+++ branches/pcc_reapply/src/extend.c	Sun Oct  4 01:08:32 2009	(r41659)
@@ -1302,12 +1302,12 @@
     sig_object = Parrot_pcc_build_sig_object_from_varargs(interp, obj, arg_sig, args);
     va_end(args);
     free(arg_sig);
-    
+
     append_result(interp, sig_object, Parrot_str_new_constant(interp, "I"), &result);
     PMC_get_sub(interp, sub_pmc, sub);
     Parrot_pcc_set_constants(interp, CURRENT_CONTEXT(interp), sub->seg->const_table->constants);
     Parrot_pcc_invoke_from_sig_object(interp, sub_pmc, sig_object);
-    
+
     return result;
 }
 
@@ -1343,12 +1343,12 @@
     sig_object = Parrot_pcc_build_sig_object_from_varargs(interp, obj, arg_sig, args);
     va_end(args);
     free(arg_sig);
-    
+
     append_result(interp, sig_object, Parrot_str_new_constant(interp, "N"), &result);
     PMC_get_sub(interp, sub_pmc, sub);
     Parrot_pcc_set_constants(interp, CURRENT_CONTEXT(interp), sub->seg->const_table->constants);
     Parrot_pcc_invoke_from_sig_object(interp, sub_pmc, sig_object);
-    
+
     return result;
 }
 


More information about the parrot-commits mailing list