1 /* { dg-do compile } */
2 /* { dg-options "-O0 -fcf-protection" } */
3 /* { dg-final { scan-assembler-times "endbr32" 1 { target ia32 } } } */
4 /* { dg-final { scan-assembler-times "endbr64" 1 { target { ! ia32 } } } } */
5 /* { dg-final { scan-assembler-not "\tcall\[ \t]+" { target { ! ia32 } || { ! *-*-darwin* } } } } */
6 /* { dg-final { scan-assembler-times "\tcall\[ \t]+" 1 { target { ia32 && *-*-darwin* } } } } */
7 /* { dg-final { scan-assembler-times "notrack call\[ \t]+" 1 } } */
8 
9 int foo (int arg);
10 
func(int arg)11 int func (int arg)
12 {
13   int (*fptrl) (int a) __attribute__ ((nocf_check)) = foo; /* { dg-warning "incompatible pointer type" } */
14 
15   return (*fptrl)(arg);  /* notrack call.  */
16 }
17