2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr14649-1.c
blobb9fc4b9461637176aaccd00738d8548b99f1c30e
1 /* PR c/14649 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -Wpedantic" } */
5 double atan(double);
7 const double pi = 4*atan(1.0); /* { dg-warning "not a constant expression" } */
9 const double ok = 4*__builtin_atan(1.0);
11 double foo()
13 double ok2 = 4*atan(1.0);
14 return ok2;