blob: c8d2a712f1f5ee33c6738312cb4f20e4fa0ac8a7 [file] [log] [blame]
/* PR target/84335 */
/* { dg-do compile } */
/* { dg-options "-O2 -maes -mno-sse2" } */
typedef long long V __attribute__ ((__vector_size__ (16)));
V
foo (V *a, V *b)
{
return __builtin_ia32_aesenc128 (*a, *b); /* { dg-error "needs isa option" } */
}