------- Comment #2 from ghazi at gcc dot gnu dot org 2005-12-03 19:41 ------- Here's a reduced testcase, compile it with cc1 targetted to x86_64-unknown-linux-gnu:
cc1 -fpreprocessed i386-sse-2.i -quiet -dumpbase i386-sse-2.c -msse -mtune=k8 -auxbase-strip i386-sse-2.s -O0 -version -o i386-sse-2.s typedef double __v2df __attribute__ ((mode (V2DF))); __v2df _mm_sqrt_sd (__v2df __A, __v2df __B) { __v2df __tmp = __builtin_ia32_movsd ((__v2df)__A, (__v2df)__B); return (__v2df)__builtin_ia32_sqrtsd ((__v2df)__tmp); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25242