summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr69156.c
blob: 522ac00be46468bca934ac603e9b248ebd7eb8c3 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR tree-optimization/69156 */
/* { dg-do compile } */
/* { dg-options "-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);
}