blob: 97b46aaa0e84ef5f40e0ac7d82e9ba95837da864 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* PR tree-optimization/69156 */
/* { dg-do compile } */
/* { dg-options "-std=gnu17 -fpermissive -O1 -fno-tree-ccp" } */
_Bool
foo ()
{
_Bool (*f) () = __builtin_abs; /* { dg-warning "initialization of '_Bool \\(\\*\\)\\(\\)' from pointer to .__builtin_abs. with incompatible type .int \\\(\\\*\\\)." } */
return f (0);
}
|