1  /* PR c/107993 */
       2  /* { dg-do compile } */
       3  
       4  typedef union { int x; } u;
       5  __attribute__((target_clones("arch=alderlake",!"default")))
       6  int f (u *x)
       7  { /* { dg-error ".target_clones. attribute argument not a string constant" } */
       8    return 0;
       9  }