blob: a7af61db233c286713ef06c6b96a0a30e1d3592c [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target arm_thumb2_ok } */
/* { dg-options "-Ofast -fstack-clash-protection" } */
void d (void *);
void a ()
{
int b;
void bar (int c)
{
if (__builtin_expect (c, 0))
++b;
}
d (bar);
}