[svn:parrot] r40775 - branches/context_pmc3/include/parrot

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Aug 25 10:35:06 UTC 2009


Author: bacek
Date: Tue Aug 25 10:35:05 2009
New Revision: 40775
URL: https://trac.parrot.org/parrot/changeset/40775

Log:
[core] Reindent Parrot_Context fields. No functional changes.

Modified:
   branches/context_pmc3/include/parrot/context.h

Modified: branches/context_pmc3/include/parrot/context.h
==============================================================================
--- branches/context_pmc3/include/parrot/context.h	Tue Aug 25 07:57:04 2009	(r40774)
+++ branches/context_pmc3/include/parrot/context.h	Tue Aug 25 10:35:05 2009	(r40775)
@@ -22,15 +22,14 @@
 } Regs_ni;
 
 struct Parrot_Context {
-    /* common header with Interp_Context */
-    struct PMC            *caller_ctx;      /* caller context */
-    Regs_ni                bp;              /* pointers to FLOATVAL & INTVAL */
-    Regs_ps                bp_ps;           /* pointers to PMC & STR */
+    PMC     *caller_ctx;      /* caller context */
+    Regs_ni  bp;              /* pointers to FLOATVAL & INTVAL */
+    Regs_ps  bp_ps;           /* pointers to PMC & STR */
 
     /* end common header */
-    INTVAL                n_regs_used[4];   /* INSP in PBC points to Sub */
-    PMC                   *lex_pad;         /* LexPad PMC */
-    struct PMC            *outer_ctx;       /* outer context, if a closure */
+    INTVAL   n_regs_used[4];   /* INSP in PBC points to Sub */
+    PMC      *lex_pad;         /* LexPad PMC */
+    PMC      *outer_ctx;       /* outer context, if a closure */
 
     /* new call scheme and introspective variables */
     PMC      *current_sub;           /* the Sub we are executing */


More information about the parrot-commits mailing list