aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr59630.c
blob: 6a3c72552f5a08a318424afd7184b9e4636e6c93 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
/* { dg-options "-O" } */

_Bool foo()
{
  _Bool (*f)(int) = __builtin_abs; /* { dg-warning "" } */
  return f(0);
}