This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gcjx] Patch: FYI: update tree.def comment


I'm checking this in on the gcjx branch.

The comment about CHAR_TYPE no longer applies on the gcjx branch; gcjx
doesn't use CHAR_TYPE.  Maybe CHAR_TYPE can be completely removed on
the branch?  (I don't plan to do it any time soon.)

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>

	* tree.def (CHAR_TYPE): Updated comment.

Index: tree.def
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree.def,v
retrieving revision 1.109
diff -u -r1.109 tree.def
--- tree.def 10 Jan 2005 19:34:36 -0000 1.109
+++ tree.def 9 Mar 2005 02:20:17 -0000
@@ -1,6 +1,6 @@
 /* This file contains the definitions and documentation for the
    tree codes used in GCC.
-   Copyright (C) 1987, 1988, 1993, 1995, 1997, 1998, 2000, 2001, 2004
+   Copyright (C) 1987, 1988, 1993, 1995, 1997, 1998, 2000, 2001, 2004, 2005
    Free Software Foundation, Inc.
 
 This file is part of GCC.
@@ -151,7 +151,7 @@
    INTEGRAL_TYPE. */
 DEFTREECODE (BOOLEAN_TYPE, "boolean_type", tcc_type, 0)
 
-/* CHAR in Java; not used in C.  Looks like an INTEGRAL_TYPE.  */
+/* Not used in C.  Looks like an INTEGRAL_TYPE.  */
 DEFTREECODE (CHAR_TYPE, "char_type", tcc_type, 0)
 
 /* Integer types in all languages, including char in C.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]