(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr84335.c
       1  /* PR target/84335 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -maes -mno-sse2" } */
       4  typedef long long V __attribute__ ((__vector_size__ (16)));
       5  
       6  V
       7  foo (V *a, V *b)
       8  {
       9    return __builtin_ia32_aesenc128 (*a, *b);	/* { dg-error "needs isa option" } */
      10  }