(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
cet-notrack-7.c
       1  /* Check the notrack prefix is not generated for direct call.  */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O -fcf-protection" } */
       4  /* { dg-final { scan-assembler-times "endbr32" 1 { target ia32 } } } */
       5  /* { dg-final { scan-assembler-times "endbr64" 1 { target { ! ia32 } } } } */
       6  /* { dg-final { scan-assembler-times "notrack call\[ \t]+.*foo" 0 } } */
       7  /* { dg-final { scan-assembler-times "\tcall\[ \t]+.*foo" 1 } } */
       8  
       9  extern void foo (void) __attribute__((nocf_check));
      10  
      11  void
      12  bar (void)
      13  {
      14    foo ();
      15  }