[EMAIL PROTECTED] stack-2]$ cat x.i float essef(float) __attribute__((sseregparm)); extern float f; void test(void) { f = essef(f); } [EMAIL PROTECTED] stack-2]$ /usr/gcc-4.3/bin/gcc -m32 -mno-sse -S x.i x.i: In function 'test': x.i:5: error: Calling 'float(float)' with attribute sseregparm without SSE/SSE2 enabled x.i:5: error: Calling 'float(float)' with attribute sseregparm without SSE/SSE2 enabled x.i:5: error: Calling 'float(float)' with attribute sseregparm without SSE/SSE2 enabled x.i:5: error: Calling 'float(float)' with attribute sseregparm without SSE/SSE2 enabled x.i:5: error: Calling 'float(float)' with attribute sseregparm without SSE/SSE2 enabled x.i:5: error: Calling 'essef' with attribute sseregparm without SSE/SSE2 enabled x.i:5: error: Calling 'essef' with attribute sseregparm without SSE/SSE2 enabled x.i:5: error: Calling 'float(float)' with attribute sseregparm without SSE/SSE2 enabled [EMAIL PROTECTED] stack-2]$
There are 2 problems: 1. 'float(float)' is confusing. 2. There are many duplicated messages. -- Summary: Strang error messages Product: gcc Version: 4.3.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: hjl dot tools at gmail dot com GCC target triplet: i686-pc-linux-gnu http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35084