Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / pr14649-1.c
blob83a9f570eef3e0d0e3e86bc6d75da78f37373886
1 /* PR c/14649 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 double atan(double);
7 const double pi = 4*atan(1.0); /* { dg-warning "(not constant)|(near initialization)" } */
9 const double ok = 4*__builtin_atan(1.0);
11 double foo()
13 double ok2 = 4*atan(1.0);
14 return ok2;