aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/sseregparm-7.c
blob: 54b2573cf3499bdda9a95c34541c5c496858adfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-msse2 -O2" } */
/* { dg-require-effective-target ia32 } */

/* Make sure we know that mysinfp returns in %xmm0.  */

double __attribute__((sseregparm)) mysin(void);
double bar(double x)
{
  return mysin();
}

/* { dg-final { scan-assembler "fldl" } } */