value-range: Fix handling of POLY_INT_CST anti-ranges [PR96146]
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / sve / acle / general / nosve_3.c
blob85f4eb3c006f8dbe6fc0332312e9b294080b5d8f
1 /* { dg-options "-march=armv8-a" } */
3 #pragma GCC aarch64 "arm_sve.h"
5 void __attribute__ ((target("+sve")))
6 f (svbool_t *x, svint8_t *y)
8 *x = svptrue_b8 ();
9 *y = svadd_m (*x, *y, 1);
12 /* { dg-final { scan-assembler {\tadd\tz[0-9]+\.b, p[0-7]/m, z[0-9]+\.b, z[0-9]+\.b\n} } } */