(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
x86_64/
abi/
bf16/
m512bf16/
bf16-zmm-check.h
       1  #include <stdlib.h>
       2  #include "../bf16-helper.h"
       3  
       4  static void do_test (void);
       5  
       6  int
       7  main ()
       8  {
       9  
      10    if (__builtin_cpu_supports ("avx512f"))
      11      {
      12        do_test ();
      13  #ifdef DEBUG
      14        printf ("PASSED\n");
      15  #endif
      16        return 0;
      17      }
      18  
      19  #ifdef DEBUG
      20    printf ("SKIPPED\n");
      21  #endif
      22  
      23    return 0;
      24  }