Subject: EGCS on mips stable?
To: None <port-mips@netbsd.org>
From: Castor Fu <castor@geocast.net>
List: port-mips
Date: 10/25/1998 08:55:35
I recently imported current into our cross development tree, and 
tried to move our compilers forward to the same version of egcs as
in current, and am getting an internal compiler error in a few places.

Do people see this in native builds?  I've sent in a report to egcs-bugs,
but have not heard anything back.  Trying this on the latest egcs snapshot
also fails.

Here's an example of the code which kills it.

	Regards,
	Castor

	struct biggy {
		char	buf[32800];	/* len further than 16 bit offset */
		char    len  [10 ];
	};

	static
	void f ( struct biggy * s, int v)
	{
		 s->len[v] = 13 ;
	}