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

petdance at svn.parrot.org petdance at svn.parrot.org
Mon Apr 6 03:52:30 UTC 2009


Author: petdance
Date: Mon Apr  6 03:52:29 2009
New Revision: 37920
URL: https://trac.parrot.org/parrot/changeset/37920

Log:
more consting

Modified:
   trunk/compilers/imcc/pbc.c

Modified: trunk/compilers/imcc/pbc.c
==============================================================================
--- trunk/compilers/imcc/pbc.c	Mon Apr  6 03:40:02 2009	(r37919)
+++ trunk/compilers/imcc/pbc.c	Mon Apr  6 03:52:29 2009	(r37920)
@@ -610,7 +610,7 @@
     *ins_line   = 0;
 
     if (IMCC_INFO(interp)->globals->cs && interp->code->base.data) {
-        subs_t *s;
+        const subs_t *s;
         for (s = IMCC_INFO(interp)->globals->cs->subs; s; s = s->prev) {
             size      += s->size;
             *ins_line += s->ins_line;


More information about the parrot-commits mailing list