Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / i386 / sseregparm-4.c
bloba29cf06bf5c93497c92915caaf7b35ba43bdf0a0
1 /* { dg-do compile } */
2 /* { dg-options "-msse2 -O2" } */
3 /* { dg-require-effective-target ilp32 } */
5 /* Make sure we know that mysinfp returns in %xmm0. */
7 double __attribute__((sseregparm)) mysin(double x);
8 double __attribute__((sseregparm)) (*mysinfp)(double) = mysin;
9 double bar(double x)
11 return mysinfp(x);
14 /* { dg-final { scan-assembler "fldl" } } */