[svn:parrot] r41049 - branches/pluggable_runcore/src/runcore

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Sep 6 08:52:11 UTC 2009


Author: bacek
Date: Sun Sep  6 08:52:11 2009
New Revision: 41049
URL: https://trac.parrot.org/parrot/changeset/41049

Log:
Fix codetest failures reported by mikehh++

Modified:
   branches/pluggable_runcore/src/runcore/cores.c

Modified: branches/pluggable_runcore/src/runcore/cores.c
==============================================================================
--- branches/pluggable_runcore/src/runcore/cores.c	Sun Sep  6 08:47:17 2009	(r41048)
+++ branches/pluggable_runcore/src/runcore/cores.c	Sun Sep  6 08:52:11 2009	(r41049)
@@ -869,7 +869,7 @@
 #ifdef code_end
 #  undef code_end
 #endif
- 
+
 #define  code_start interp->code->base.data
 #define  code_end (interp->code->base.data + interp->code->base.size)
 
@@ -1187,7 +1187,8 @@
         fprintf(runcore->profile_fd, "VERSION:1\n");
         /* silly hack to make all separate runloops appear to come from a single source */
         fprintf(runcore->profile_fd, "CS:{ns:main}{file:no_file}{sub:0x1}{ctx:0x1}\n");
-        fprintf(runcore->profile_fd, "OP:{line:%d}{time:0}{op:noop}\n", (int) runcore->runloop_count);
+        fprintf(runcore->profile_fd, "OP:{line:%d}{time:0}{op:noop}\n",
+                (int) runcore->runloop_count);
         runcore->runloop_count++;
         Profiling_first_loop_CLEAR(runcore);
     }
@@ -1276,7 +1277,8 @@
         fprintf(runcore->profile_fd, "END_OF_RUNLOOP\n");
         /* silly hack to make all separate runloops appear to come from a single source */
         fprintf(runcore->profile_fd, "CS:{ns:main}{file:no_file}{sub:0x1}{ctx:0x1}\n");
-        fprintf(runcore->profile_fd, "OP:{line:%d}{time:0}{op:noop}\n", (int) runcore->runloop_count);
+        fprintf(runcore->profile_fd, "OP:{line:%d}{time:0}{op:noop}\n",
+                (int) runcore->runloop_count);
         runcore->runloop_count++;
     }
 


More information about the parrot-commits mailing list