RISC-V: Force scalable vector on all vsetvl tests
[official-gcc.git] / gcc / testsuite / gcc.target / riscv / rvv / vsetvl / vlmax_miss_default-7.c
blobc7fec261333643bf416a40292759ab596047b1c8
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)
9 if (cond == 1)
11 vint16mf4_t v = *(vint16mf4_t*)(in + 100);
12 *(vint16mf4_t*)(out + 100) = v;
14 else if (cond == 2)
16 vint16mf4_t v = *(vint16mf4_t*)(in + 200);
17 *(vint16mf4_t*)(out + 200) = v;
19 else if (cond == 3)
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" } } } } */