Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!SEI.CMU.EDU!prp From: prp@SEI.CMU.EDU Newsgroups: gnu.gcc.bug Subject: (none) Message-ID: <9001081510.AA16853@fs.sei.cmu.edu> Date: 8 Jan 90 15:10:43 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 26 To: bug-gcc@prep.ai.mit.edu Subject: Potential bug with prototypes in gcc 1.36 Date: Mon Jan 08 10:02:16 1990 From: Pat Place Phone: (412) 268 7746 Organization: Software Engineering Institute Message-Id: <9001081010.bidot.prp@SEI> At the end of this message is a program that gcc 1.36 fails to compile it generates error messages relating to the type of x not matching the function prototype. This would appear to be a bug. Pat Place prp@seu.cmu.edu (Note, this occurs on a SUN 3/50 running SunOS 3.5) --- program --- typedef unsigned short x_t; void func(x_t x); void func(x) x_t x; { }