summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/riscv/rvv/base/binop_vx_constraint-122.c
blob: 495f8cad3b8bcb9eac17dbd2ac982ab906a6f967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-march=rv32gcv -mabi=ilp32 -O3" } */
#include "riscv_vector.h"

void f1 (void * in, void *out, int32_t x)
{
    vint32m1_t v = __riscv_vle32_v_i32m1 (in, 4);
    vint32m1_t v2 = __riscv_vle32_v_i32m1_tu (v, in, 4);
    vint32m1_t v3 = __riscv_vaadd_vx_i32m1 (v2, 0, 0, 4);
    __riscv_vse32_v_i32m1 (out, v3, 4);
}

void f2 (void * in, void *out, int32_t x)
{
    vint64m1_t v = __riscv_vle64_v_i64m1 (in, 4);
    vint64m1_t v2 = __riscv_vle64_v_i64m1_tu (v, in, 4);
    vint64m1_t v3 = __riscv_vaadd_vx_i64m1 (v2, 0, 0, 4);
    __riscv_vse64_v_i64m1 (out, v3, 4);
}

/* { dg-final { scan-assembler-times {vaadd\.vx\s+v[0-9]+,\s*v[0-9]+,zero} 2 } } */