1 /* { dg-do compile } */
2 /* { dg-options "--param=riscv-autovec-preference=scalable -march=rv32gcv -mabi=ilp32" } */
4 #include "riscv_vector.h"
6 /* The for loop body should not have vsetvl instruction. */
7 void f (void * restrict in
, void * restrict out
, int n
, int cond
)
11 vint16mf4_t v
= *(vint16mf4_t
*)(in
+ 100);
12 *(vint16mf4_t
*)(out
+ 100) = v
;
16 vint16mf4_t v
= *(vint16mf4_t
*)(in
+ 200);
17 *(vint16mf4_t
*)(out
+ 200) = v
;
21 vint16mf4_t v
= *(vint16mf4_t
*)(in
+ 300);
22 *(vint16mf4_t
*)(out
+ 300) = v
;
24 for (int i
= 0; i
< n
; i
++)
26 vint16mf4_t v
= *(vint16mf4_t
*)(in
+ i
);
27 *(vint16mf4_t
*)(out
+ i
) = v
;
31 /* { dg-final { scan-assembler-times {vsetvli\s+[a-x0-9]+,\s*zero,\s*e16,\s*mf4,\s*t[au],\s*m[au]} 4 { target { no-opts "-O0" no-opts "-Os" no-opts "-Oz" no-opts "-funroll-loops" no-opts "-g" } } } } */