view gcc/testsuite/gcc.dg/pr46728-6.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { 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} } } */