blob: 574a0b60ab488772dce7bad6cac39629905b5c6b [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fcf-protection" } */
/* { dg-final { scan-assembler-times {\mendbr} 2 } } */
extern int x;
void
test (int i)
{
x = i;
}
void
bar (int i)
{
test (i);
}