PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr69156.c
blob1addfa3f6aaedb40d168f3d465d8db4d5f041e38
1 /* PR tree-optimization/69156 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fno-tree-ccp" } */
5 _Bool
6 foo ()
8 _Bool (*f) () = __builtin_abs; /* { dg-warning "initialization of '_Bool \\(\\*\\)\\(\\)' from incompatible pointer type" } */
9 return f (0);