1 /* PR target/87198 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -mxsavec -mno-xsave" } */
4 
5 #include <x86intrin.h>
6 
7 void
test_xsavec(void * __A,long long __B)8 test_xsavec (void *__A, long long __B)
9 {
10   _xsavec (__A, __B);
11 }
12 
13 /* { dg-error "target specific option mismatch" "" { target *-*-* } 0 } */
14