blob: 332911fc931aac55f6b545b4bdae87ce337a75f3 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fcf-protection=check" } */
/* { dg-final { scan-assembler-not "endbr" } } */
extern int x;
static void
__attribute__ ((noinline, noclone))
test (int i)
{
x = i;
}
void
bar (int i)
{
test (i);
}