[BUG] GCC 3.4-20041224: __attribute__ ((regparm)) misbehaviour

Denis Zaitsev zzz@anda.ru
Tue Dec 28 03:50:00 GMT 2004


This program:


static
int x(int y)
__attribute__ ((regparm(1)));

static
int x(int y)
{
    return y;
}


can't be compiled with GCC 3.4.4 20041224.  The compiler complains:


y-bug.c:7: error: conflicting types for 'x'
y-bug.c:3: error: previous declaration of 'x' was here
y-bug.c:7: error: conflicting types for 'x'
y-bug.c:3: error: previous declaration of 'x' was here


It seems that it's a bug.



More information about the Gcc mailing list