1 /* { dg-options "-march=armv8-a" } */
2 
3 void
f(__SVBool_t * x,__SVBool_t * y)4 f (__SVBool_t *x, __SVBool_t *y)
5 {
6   *x = *y; /* { dg-error {this operation requires the SVE ISA extension} } */
7   *x = *y;
8 }
9