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
foo(V * a,V * b)7 foo (V *a, V *b)
8 {
9   return __builtin_ia32_aesenc128 (*a, *b);	/* { dg-error "needs isa option" } */
10 }
11