summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr46728-6.c
blob: 66c6e2cabece0861c35c5cdf51c7036fdd2ee2a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math -lm" } */

#include <math.h>

int
main (int argc, char *argv[])
{
  volatile double result;

  result = pow (-0.0, 3.0);
  result = pow (26.47, -2.0);
  result = pow (0.0, 0.0);
  result = pow (22.3, 1.0);
  result = pow (33.2, -1.0);

  return 0;
}


/* { dg-final { scan-assembler-not "pow" } } */