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

kjs at svn.parrot.org kjs at svn.parrot.org
Tue Feb 17 18:06:47 UTC 2009


Author: kjs
Date: Tue Feb 17 18:06:46 2009
New Revision: 36823
URL: https://trac.parrot.org/parrot/changeset/36823

Log:
[imcc] fix copyright; now Parrot Foundation. minor cleanups (spaces etc.), no functional changes.

Modified:
   trunk/compilers/imcc/cfg.c
   trunk/compilers/imcc/cfg.h
   trunk/compilers/imcc/debug.c
   trunk/compilers/imcc/debug.h
   trunk/compilers/imcc/imc.c
   trunk/compilers/imcc/imc.h
   trunk/compilers/imcc/instructions.c
   trunk/compilers/imcc/instructions.h
   trunk/compilers/imcc/optimizer.c
   trunk/compilers/imcc/optimizer.h
   trunk/compilers/imcc/parser.h
   trunk/compilers/imcc/parser_util.c
   trunk/compilers/imcc/pbc.c
   trunk/compilers/imcc/pbc.h
   trunk/compilers/imcc/pcc.c
   trunk/compilers/imcc/reg_alloc.c
   trunk/compilers/imcc/sets.c
   trunk/compilers/imcc/sets.h
   trunk/compilers/imcc/symreg.c
   trunk/compilers/imcc/symreg.h
   trunk/compilers/imcc/unit.h

Modified: trunk/compilers/imcc/cfg.c
==============================================================================
--- trunk/compilers/imcc/cfg.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/cfg.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  * $Id$
  */
 

Modified: trunk/compilers/imcc/cfg.h
==============================================================================
--- trunk/compilers/imcc/cfg.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/cfg.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2007, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 

Modified: trunk/compilers/imcc/debug.c
==============================================================================
--- trunk/compilers/imcc/debug.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/debug.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  * $Id$
  */
 

Modified: trunk/compilers/imcc/debug.h
==============================================================================
--- trunk/compilers/imcc/debug.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/debug.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2002-2007, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  * $Id$
  */
 

Modified: trunk/compilers/imcc/imc.c
==============================================================================
--- trunk/compilers/imcc/imc.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/imc.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/imcc/imc.h
==============================================================================
--- trunk/compilers/imcc/imc.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/imc.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 /* $Id$ */

Modified: trunk/compilers/imcc/instructions.c
==============================================================================
--- trunk/compilers/imcc/instructions.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/instructions.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,7 +1,6 @@
-/* $Id$ */
-
 /*
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * $Id$
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 #include <stdlib.h>

Modified: trunk/compilers/imcc/instructions.h
==============================================================================
--- trunk/compilers/imcc/instructions.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/instructions.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_IMCC_INSTRUCTIONS_H_GUARD

Modified: trunk/compilers/imcc/optimizer.c
==============================================================================
--- trunk/compilers/imcc/optimizer.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/optimizer.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/imcc/optimizer.h
==============================================================================
--- trunk/compilers/imcc/optimizer.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/optimizer.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2007, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_IMCC_OPTIMIZER_H_GUARD

Modified: trunk/compilers/imcc/parser.h
==============================================================================
--- trunk/compilers/imcc/parser.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/parser.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,10 +1,5 @@
 /*
- * Copyright (C) 2002-2008, The Perl Foundation.
- */
-
-/*
- * XXX - We need a description of the file here
- *
+ * Copyright (C) 2002-2009, Parrot Foundation.
  * $Id$
  */
 

Modified: trunk/compilers/imcc/parser_util.c
==============================================================================
--- trunk/compilers/imcc/parser_util.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/parser_util.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -4,7 +4,7 @@
  * Intermediate Code Compiler for Parrot.
  *
  * Copyright (C) 2002 Melvin Smith <melvin.smith at mindspring.com>
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  *
  * parser support functions
  *

Modified: trunk/compilers/imcc/pbc.c
==============================================================================
--- trunk/compilers/imcc/pbc.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/pbc.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2002-2009, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  * $Id$
  */
 

Modified: trunk/compilers/imcc/pbc.h
==============================================================================
--- trunk/compilers/imcc/pbc.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/pbc.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2007, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_IMCC_PBC_H_GUARD

Modified: trunk/compilers/imcc/pcc.c
==============================================================================
--- trunk/compilers/imcc/pcc.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/pcc.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2003-2008, The Perl Foundation.
+ * Copyright (C) 2003-2009, Parrot Foundation.
  * $Id$
  */
 

Modified: trunk/compilers/imcc/reg_alloc.c
==============================================================================
--- trunk/compilers/imcc/reg_alloc.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/reg_alloc.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,7 +1,7 @@
 /*
  * $Id$
- * Copyright (C) 2003-2008, The Perl Foundation.
- */
+ * Copyright (C) 2003-2009, Parrot Foundation.
+*/
 
 /*
 

Modified: trunk/compilers/imcc/sets.c
==============================================================================
--- trunk/compilers/imcc/sets.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/sets.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 /*

Modified: trunk/compilers/imcc/sets.h
==============================================================================
--- trunk/compilers/imcc/sets.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/sets.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_IMCC_SETS_H_GUARD

Modified: trunk/compilers/imcc/symreg.c
==============================================================================
--- trunk/compilers/imcc/symreg.c	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/symreg.c	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2002-2008, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  * $Id$
  */
 

Modified: trunk/compilers/imcc/symreg.h
==============================================================================
--- trunk/compilers/imcc/symreg.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/symreg.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2002-2007, The Perl Foundation.
+ * Copyright (C) 2002-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_IMCC_SYMREG_H_GUARD

Modified: trunk/compilers/imcc/unit.h
==============================================================================
--- trunk/compilers/imcc/unit.h	Tue Feb 17 17:53:50 2009	(r36822)
+++ trunk/compilers/imcc/unit.h	Tue Feb 17 18:06:46 2009	(r36823)
@@ -1,6 +1,6 @@
 /*
  * $Id$
- * Copyright (C) 2003-2008, The Perl Foundation.
+ * Copyright (C) 2003-2009, Parrot Foundation.
  */
 
 #ifndef PARROT_IMCC_UNIT_H_GUARD


More information about the parrot-commits mailing list