aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr46728-6.c
blob: bcdaf90bdb80985d36de511b9dd33659613b36b5 (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 -fno-ident" } */

#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" } } */