blob: 83a9f570eef3e0d0e3e86bc6d75da78f37373886 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* PR c/14649 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
double atan(double);
const double pi = 4*atan(1.0); /* { dg-warning "(not constant)|(near initialization)" } */
const double ok = 4*__builtin_atan(1.0);
double foo()
{
double ok2 = 4*atan(1.0);
return ok2;
}
|