This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcc/9170
- From: Andrew Haley <aph at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org, java at gcc dot gnu dot org
- Date: Sat, 25 Jan 2003 11:51:43 +0000 (GMT)
- Subject: Re: gcc/9170
- References: <15900.1561.338177.480314@cuddles.cambridge.redhat.com><1042097947.1551.31.camel@escape><15901.19413.283193.875888@cuddles.cambridge.redhat.com><1042122884.1625.38.camel@escape>
CHAR_TYPE is missing from the list in tree-inline.c.
Andrew.
2003-01-25 Andrew Haley <aph@redhat.com>
* tree-inline.c (walk_tree): Add CHAR_TYPE.
Index: tree-inline.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-inline.c,v
retrieving revision 1.40
diff -u -r1.40 tree-inline.c
--- tree-inline.c 24 Dec 2002 08:30:33 -0000 1.40
+++ tree-inline.c 25 Jan 2003 11:51:01 -0000
@@ -1620,6 +1620,7 @@
case ENUMERAL_TYPE:
case BLOCK:
case RECORD_TYPE:
+ case CHAR_TYPE:
/* None of thse have subtrees other than those already walked
above. */
break;