This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: sdbout.c tree check error
- From: kenner at vlsi1 dot ultra dot nyu dot edu (Richard Kenner)
- To: dj at redhat dot com
- Cc: gcc at gcc dot gnu dot org
- Date: Fri, 26 Mar 04 17:25:57 EST
- Subject: Re: sdbout.c tree check error
i386.h points at the end of a typedef enum; the sdbout code looks like
this:
if (TREE_CODE (type) == ENUMERAL_TYPE)
{
for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
This code is many years old.
Ideas?
TYPE_FIELDS should be TYPE_VALUES.