[svn:parrot] r41399 - trunk/compilers/imcc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Mon Sep 21 10:10:50 UTC 2009


Author: mikehh
Date: Mon Sep 21 10:10:50 2009
New Revision: 41399
URL: https://trac.parrot.org/parrot/changeset/41399

Log:
codetest faillure - at least one space between keyword and subsequent open parenthesis

Modified:
   trunk/compilers/imcc/pcc.c

Modified: trunk/compilers/imcc/pcc.c
==============================================================================
--- trunk/compilers/imcc/pcc.c	Mon Sep 21 10:00:17 2009	(r41398)
+++ trunk/compilers/imcc/pcc.c	Mon Sep 21 10:10:50 2009	(r41399)
@@ -447,7 +447,7 @@
         IMCC_debug(interp, DEBUG_IMC, "add sub ret - %I\n", tmp);
         insert_ins(unit, unit->last_ins, tmp);
     }
-    else if(STREQ(unit->last_ins->opname, "exit")) {
+    else if (STREQ(unit->last_ins->opname, "exit")) {
         /* C<exit> builds RetContinuation pointing to next op_code. So insert some */
         Instruction *tmp = INS(interp, unit, "noop", NULL, regs, 0, 0, 0);
         insert_ins(unit, unit->last_ins, tmp);


More information about the parrot-commits mailing list