summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/387-8.c
blob: 6af895998d0ad3289126c39c6a2eab758c5f5e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Verify that 387 fptan instruction is generated. Also check fptan
   peephole2 optimizer.  */
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -ffast-math -march=i686" } */
/* { dg-final { scan-assembler "fptan" } } */
/* { dg-final { scan-assembler-not "fld1" } } */

extern double tan (double);

double f1(double x)
{
  return 1.0 / tan(x);
}