This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


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

newly broken code ?



Hello there,

Can anyone explain why the following code has become ambiguous in the
snapshot of 980715 ?

void f( int, ...);

struct S
{
};

void
g()
{
 	void f( int, ...);
	
	S t;

	f( 1, t);
}

void
f( int i, ...)
{
}

My understanding is that the code is ok. Linux/Alpha, if that makes
any difference.

Regards

David C Binderman MSc BSc	+44 1293 534847		dcb@pncl.co.uk



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