1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 
4 #include <arm_sve.h>
5 
6 void
test1(svbool_t pg,svbool_t x,svbool_t y,int * any,svbool_t * ptr)7 test1 (svbool_t pg, svbool_t x, svbool_t y, int *any, svbool_t *ptr)
8 {
9   svbool_t res = svorn_z (pg, x, y);
10   *any = svptest_any (pg, res);
11   *ptr = res;
12 }
13 
14 int
test2(svbool_t pg,svbool_t x,svbool_t y,int * any)15 test2 (svbool_t pg, svbool_t x, svbool_t y, int *any)
16 {
17   svbool_t res = svorn_z (pg, x, y);
18   return svptest_any (pg, res);
19 }
20 
21 /* { dg-final { scan-assembler-times {\torns\t} 2 } } */
22 /* { dg-final { scan-assembler-not {\torn\t} } } */
23