[svn:parrot] r36665 - trunk/compilers/pirc/src

kjs at svn.parrot.org kjs at svn.parrot.org
Fri Feb 13 10:20:13 UTC 2009


Author: kjs
Date: Fri Feb 13 10:20:10 2009
New Revision: 36665
URL: https://trac.parrot.org/parrot/changeset/36665

Log:
[pirc] update Copyright; s/The Perl/Parrot/

Modified:
   trunk/compilers/pirc/src/bcgen.c
   trunk/compilers/pirc/src/bcgen.h
   trunk/compilers/pirc/src/hdocprep.c
   trunk/compilers/pirc/src/hdocprep.l
   trunk/compilers/pirc/src/main.c
   trunk/compilers/pirc/src/pir.l
   trunk/compilers/pirc/src/pir.y
   trunk/compilers/pirc/src/pircapi.c
   trunk/compilers/pirc/src/pircapi.h
   trunk/compilers/pirc/src/pircompiler.c
   trunk/compilers/pirc/src/pircompiler.h
   trunk/compilers/pirc/src/pircompunit.c
   trunk/compilers/pirc/src/pircompunit.h
   trunk/compilers/pirc/src/pirdefines.h
   trunk/compilers/pirc/src/piremit.c
   trunk/compilers/pirc/src/piremit.h
   trunk/compilers/pirc/src/pirerr.c
   trunk/compilers/pirc/src/pirerr.h
   trunk/compilers/pirc/src/pirheredoc.h
   trunk/compilers/pirc/src/pirmacro.c
   trunk/compilers/pirc/src/pirmacro.h
   trunk/compilers/pirc/src/pirop.c
   trunk/compilers/pirc/src/pirop.h
   trunk/compilers/pirc/src/pirparser.c
   trunk/compilers/pirc/src/pirpcc.c
   trunk/compilers/pirc/src/pirpcc.h
   trunk/compilers/pirc/src/pirregalloc.c
   trunk/compilers/pirc/src/pirregalloc.h
   trunk/compilers/pirc/src/pirsymbol.c
   trunk/compilers/pirc/src/pirsymbol.h
   trunk/compilers/pirc/src/piryy.h

Modified: trunk/compilers/pirc/src/bcgen.c
==============================================================================
--- trunk/compilers/pirc/src/bcgen.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/bcgen.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008-2009, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 #include <stdio.h>
 #include <assert.h>

Modified: trunk/compilers/pirc/src/bcgen.h
==============================================================================
--- trunk/compilers/pirc/src/bcgen.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/bcgen.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008-2009, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_BCGEN_H_GUARD

Modified: trunk/compilers/pirc/src/hdocprep.c
==============================================================================
--- trunk/compilers/pirc/src/hdocprep.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/hdocprep.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -31,10 +31,18 @@
 
 /* A lexical scanner generated by flex */
 
+/* %not-for-header */
+
+/* %if-c-only */
+/* %if-not-reentrant */
+/* %endif */
+/* %endif */
+/* %ok-for-header */
+
 #define FLEX_SCANNER
 #define YY_FLEX_MAJOR_VERSION 2
 #define YY_FLEX_MINOR_VERSION 5
-#define YY_FLEX_SUBMINOR_VERSION 33
+#define YY_FLEX_SUBMINOR_VERSION 35
 #if YY_FLEX_SUBMINOR_VERSION > 0
 #define FLEX_BETA
 #endif
@@ -72,7 +80,7 @@
 
 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
 
-#if __STDC_VERSION__ >= 199901L
+#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
 
 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
  * if you want the limit (max/min) macros for int types.
@@ -140,11 +148,12 @@
 
 #else   /* ! __cplusplus */
 
-#if __STDC__
+/* C99 requires __STDC__ to be defined as 1. */
+#if defined (__STDC__)
 
 #define YY_USE_CONST
 
-#endif  /* __STDC__ */
+#endif  /* defined (__STDC__) */
 #endif  /* ! __cplusplus */
 
 #ifdef YY_USE_CONST
@@ -188,7 +197,6 @@
 #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column)
 #define yy_flex_debug yyg->yy_flex_debug_r
 
-int yylex_init (yyscan_t* scanner);
 /* %endif */
 
 /* %if-not-reentrant */
@@ -272,14 +280,9 @@
 
 #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
 
-/* The following is because we cannot portably get our hands on size_t
- * (without autoconf's help, which isn't available because we want
- * flex-generated scanners to compile on their own).
- */
-
 #ifndef YY_TYPEDEF_YY_SIZE_T
 #define YY_TYPEDEF_YY_SIZE_T
-typedef unsigned int yy_size_t;
+typedef size_t yy_size_t;
 #endif
 
 #ifndef YY_STRUCT_YY_BUFFER_STATE
@@ -663,7 +666,7 @@
 
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 /*
@@ -889,7 +892,7 @@
 
 
 
-#line 893 "hdocprep.c"
+#line 896 "hdocprep.c"
 
 #define INITIAL 0
 #define POD 1
@@ -960,8 +963,14 @@
 
 /* %if-reentrant */
 
+int yylex_init (yyscan_t* scanner);
+
+int yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner);
+
 /* %endif */
 
+/* %endif End reentrant structures and macros. */
+
 /* Accessor methods to globals.
    These are made visible to non-reentrant scanners for convenience. */
 
@@ -993,7 +1002,6 @@
 
 /* %if-bison-bridge */
 /* %endif */
-/* %endif End reentrant structures and macros. */
 
 /* Macros after this point can all be overridden by user definitions in
  * section 1.
@@ -1054,7 +1062,7 @@
 /* This used to be an fputs(), but since the string might contain NUL's,
  * we now use fwrite().
  */
-#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
+#define ECHO fwrite( yytext, yyleng, 1, yyout )
 /* %endif */
 /* %if-c++-only C++ definition */
 /* %endif */
@@ -1069,7 +1077,7 @@
     if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
         { \
         int c = '*'; \
-        size_t n; \
+        int n; \
         for ( n = 0; n < max_size && \
                  (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
             buf[n] = (char) c; \
@@ -1183,7 +1191,7 @@
 #line 283 "hdocprep.l"
 
 
-#line 1187 "hdocprep.c"
+#line 1195 "hdocprep.c"
 
     if ( !yyg->yy_init )
         {
@@ -1636,7 +1644,7 @@
 #line 536 "hdocprep.l"
 ECHO;
     YY_BREAK
-#line 1640 "hdocprep.c"
+#line 1648 "hdocprep.c"
 case YY_STATE_EOF(INCLUDE):
 case YY_STATE_EOF(SAVE_REST_OF_LINE):
 case YY_STATE_EOF(SAVE_REST_AGAIN):
@@ -1884,7 +1892,7 @@
 
         /* Read in more data. */
         YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
-            yyg->yy_n_chars, num_to_read );
+            yyg->yy_n_chars, (size_t) num_to_read );
 
         YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
         }
@@ -1908,6 +1916,14 @@
     else
         ret_val = EOB_ACT_CONTINUE_SCAN;
 
+    if ((yy_size_t) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
+        /* Extend the array by 50%, plus the number we really need. */
+        yy_size_t new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1);
+        YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner );
+        if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
+            YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
+    }
+
     yyg->yy_n_chars += number_to_move;
     YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR;
     YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
@@ -2384,6 +2400,8 @@
         yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc
                                 (num_to_alloc * sizeof(struct yy_buffer_state*)
                                 , yyscanner);
+        if ( ! yyg->yy_buffer_stack )
+            YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
 
         memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*));
 
@@ -2402,6 +2420,8 @@
                                 (yyg->yy_buffer_stack,
                                 num_to_alloc * sizeof(struct yy_buffer_state*)
                                 , yyscanner);
+        if ( ! yyg->yy_buffer_stack )
+            YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
 
         /* zero only the new slots.*/
         memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*));
@@ -2450,7 +2470,7 @@
 /* %if-c-only */
 /** Setup the input buffer state to scan a string. The next call to yylex() will
  * scan from a @e copy of @a str.
- * @param str a NUL-terminated string to scan
+ * @param yystr a NUL-terminated string to scan
  * @param yyscanner The scanner object.
  * @return the newly allocated buffer state object.
  * @note If you want to scan bytes that may contain NUL values, then use
@@ -2523,8 +2543,7 @@
             yyg->yy_start_stack = (int *) yyrealloc((void *) yyg->yy_start_stack,new_size ,yyscanner );
 
         if ( ! yyg->yy_start_stack )
-            YY_FATAL_ERROR(
-            "out of memory expanding start-condition stack" );
+            YY_FATAL_ERROR( "out of memory expanding start-condition stack" );
         }
 
     yyg->yy_start_stack[yyg->yy_start_stack_ptr++] = YY_START;
@@ -2765,7 +2784,43 @@
     return yy_init_globals ( *ptr_yy_globals );
 }
 
-/* %endif */
+/* yylex_init_extra has the same functionality as yylex_init, but follows the
+ * convention of taking the scanner as the last argument. Note however, that
+ * this is a *pointer* to a scanner, as it will be allocated by this call (and
+ * is the reason, too, why this function also must handle its own declaration).
+ * The user defined value in the first argument will be available to yyalloc in
+ * the yyextra field.
+ */
+
+int yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals )
+
+{
+    struct yyguts_t dummy_yyguts;
+
+    yyset_extra (yy_user_defined, &dummy_yyguts);
+
+    if (ptr_yy_globals == NULL){
+        errno = EINVAL;
+        return 1;
+    }
+
+    *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts );
+
+    if (*ptr_yy_globals == NULL){
+        errno = ENOMEM;
+        return 1;
+    }
+
+    /* By setting to 0xAA, we expose bugs in
+    yy_init_globals. Leave at 0x00 for releases. */
+    memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
+
+    yyset_extra (yy_user_defined, *ptr_yy_globals);
+
+    return yy_init_globals ( *ptr_yy_globals );
+}
+
+/* %endif if-c-only */
 
 /* %if-c-only */
 static int yy_init_globals (yyscan_t yyscanner)

Modified: trunk/compilers/pirc/src/hdocprep.l
==============================================================================
--- trunk/compilers/pirc/src/hdocprep.l	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/hdocprep.l	Fri Feb 13 10:20:10 2009	(r36665)
@@ -28,7 +28,7 @@
 
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/pirc/src/main.c
==============================================================================
--- trunk/compilers/pirc/src/main.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/main.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 

Modified: trunk/compilers/pirc/src/pir.l
==============================================================================
--- trunk/compilers/pirc/src/pir.l	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pir.l	Fri Feb 13 10:20:10 2009	(r36665)
@@ -40,7 +40,7 @@
 
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/pirc/src/pir.y
==============================================================================
--- trunk/compilers/pirc/src/pir.y	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pir.y	Fri Feb 13 10:20:10 2009	(r36665)
@@ -2,7 +2,7 @@
 
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/pirc/src/pircapi.c
==============================================================================
--- trunk/compilers/pirc/src/pircapi.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pircapi.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2009, The Perl Foundation.
+ * Copyright (C) 2009, Parrot Foundation.
  */
 
 

Modified: trunk/compilers/pirc/src/pircapi.h
==============================================================================
--- trunk/compilers/pirc/src/pircapi.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pircapi.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2009, The Perl Foundation.
+ * Copyright (C) 2009, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIRCAPI_H_GUARD

Modified: trunk/compilers/pirc/src/pircompiler.c
==============================================================================
--- trunk/compilers/pirc/src/pircompiler.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pircompiler.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 #include <stdlib.h>

Modified: trunk/compilers/pirc/src/pircompiler.h
==============================================================================
--- trunk/compilers/pirc/src/pircompiler.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pircompiler.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIRCOMPILER_H_GUARD

Modified: trunk/compilers/pirc/src/pircompunit.c
==============================================================================
--- trunk/compilers/pirc/src/pircompunit.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pircompunit.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/pirc/src/pircompunit.h
==============================================================================
--- trunk/compilers/pirc/src/pircompunit.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pircompunit.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/pirc/src/pirdefines.h
==============================================================================
--- trunk/compilers/pirc/src/pirdefines.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirdefines.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIRDEFINES_H_GUARD

Modified: trunk/compilers/pirc/src/piremit.c
==============================================================================
--- trunk/compilers/pirc/src/piremit.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/piremit.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008-2009, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 #include <stdio.h>

Modified: trunk/compilers/pirc/src/piremit.h
==============================================================================
--- trunk/compilers/pirc/src/piremit.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/piremit.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIREMIT_H_GUARD

Modified: trunk/compilers/pirc/src/pirerr.c
==============================================================================
--- trunk/compilers/pirc/src/pirerr.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirerr.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 #include <stdio.h>

Modified: trunk/compilers/pirc/src/pirerr.h
==============================================================================
--- trunk/compilers/pirc/src/pirerr.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirerr.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIRERR_H_GUARD

Modified: trunk/compilers/pirc/src/pirheredoc.h
==============================================================================
--- trunk/compilers/pirc/src/pirheredoc.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirheredoc.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008-2009, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 

Modified: trunk/compilers/pirc/src/pirmacro.c
==============================================================================
--- trunk/compilers/pirc/src/pirmacro.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirmacro.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 #include <stdarg.h>

Modified: trunk/compilers/pirc/src/pirmacro.h
==============================================================================
--- trunk/compilers/pirc/src/pirmacro.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirmacro.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 #ifndef PARROT_PIR_PIRMACRO_H_GUARD
 #define PARROT_PIR_PIRMACRO_H_GUARD

Modified: trunk/compilers/pirc/src/pirop.c
==============================================================================
--- trunk/compilers/pirc/src/pirop.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirop.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2009, The Perl Foundation.
+ * Copyright (C) 2009, Parrot Foundation.
  */
 
 

Modified: trunk/compilers/pirc/src/pirop.h
==============================================================================
--- trunk/compilers/pirc/src/pirop.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirop.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2009, The Perl Foundation.
+ * Copyright (C) 2009, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIROP_H_GUARD

Modified: trunk/compilers/pirc/src/pirparser.c
==============================================================================
--- trunk/compilers/pirc/src/pirparser.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirparser.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -319,7 +319,7 @@
 
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/pirc/src/pirpcc.c
==============================================================================
--- trunk/compilers/pirc/src/pirpcc.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirpcc.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 

Modified: trunk/compilers/pirc/src/pirpcc.h
==============================================================================
--- trunk/compilers/pirc/src/pirpcc.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirpcc.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIRPCC_H_GUARD

Modified: trunk/compilers/pirc/src/pirregalloc.c
==============================================================================
--- trunk/compilers/pirc/src/pirregalloc.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirregalloc.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008-2009, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 #include <stdio.h>
 #include "pircompiler.h"

Modified: trunk/compilers/pirc/src/pirregalloc.h
==============================================================================
--- trunk/compilers/pirc/src/pirregalloc.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirregalloc.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008-2009, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_PIR_PIRREGALLOC_H_GUARD

Modified: trunk/compilers/pirc/src/pirsymbol.c
==============================================================================
--- trunk/compilers/pirc/src/pirsymbol.c	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirsymbol.c	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 #include "pircompiler.h"
 #include "pirsymbol.h"

Modified: trunk/compilers/pirc/src/pirsymbol.h
==============================================================================
--- trunk/compilers/pirc/src/pirsymbol.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/pirsymbol.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2007-2009, The Perl Foundation.
+ * Copyright (C) 2007-2009, Parrot Foundation.
  */
 
 

Modified: trunk/compilers/pirc/src/piryy.h
==============================================================================
--- trunk/compilers/pirc/src/piryy.h	Fri Feb 13 10:10:33 2009	(r36664)
+++ trunk/compilers/pirc/src/piryy.h	Fri Feb 13 10:20:10 2009	(r36665)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2008, The Perl Foundation.
+ * Copyright (C) 2008-2009, Parrot Foundation.
  */
 
 /* This file declared parser/lexer related functions, so that any changes


More information about the parrot-commits mailing list