blob: d1a3337ac21584c60a88a6b89e778dafc9950c26 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fcf-protection" } */
/* { dg-final { scan-assembler-times "endbr32" 1 { target ia32 } } } */
/* { dg-final { scan-assembler-times "endbr64" 1 { target { ! ia32 } } } } */
/* { dg-final { scan-assembler-times "notrack call\[ \t]+" 2 } } */
int func (int a) __attribute__ ((nocf_check));
int (*fptr) (int a) __attribute__ ((nocf_check));
int foo (int arg)
{
int a, b;
a = func (arg);
b = (*fptr) (arg);
return a+b;
}
int __attribute__ ((nocf_check))
func (int arg)
{
int (*fptrl) (int a) __attribute__ ((nocf_check));
return arg*(*fptrl)(arg);
}