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