1  /* { dg-do compile } */
       2  /* { dg-options "-menqcmd -O2" } */
       3  /* { dg-final { scan-assembler-times "\tenqcmds" 1 } } */
       4  /* { dg-final { scan-assembler-times "\tsete" 1 } } */
       5  
       6  #include <x86intrin.h>
       7  
       8  unsigned int w;
       9  unsigned int array[16];
      10  int
      11  test_enqcmds (void)
      12  {
      13    return _enqcmds(&w, array);
      14  }
      15