summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr46728-6.c
blob: b566391ddaf8c7ad13f1d8c5d53c18d0cba9f2c0 (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\M} } } */