blob: 14ce0ffd1e1612b1fa3156044e2b7a51c0dded98 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fcf-protection" } */
/* { dg-final { scan-assembler-times {\mendbr} 2 } } */
/* { dg-final { scan-assembler-not "jmp" } } */
struct ucontext;
extern int bar (struct ucontext *) __attribute__((__indirect_return__));
int
foo (struct ucontext *oucp)
{
return bar (oucp);
}