aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/riscv/rvv/base/float-point-single-sub.c
blob: 34ed03a31d9eaf179b3e8503cf332654adfe63a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* { dg-do compile } */
/* { dg-options "-march=rv64gcv -mabi=lp64 -O3 -Wno-psabi" } */

#include "riscv_vector.h"

typedef float float32_t;

vfloat32m1_t
test_riscv_vfsub_vv_f32m1_rm (vfloat32m1_t op1, vfloat32m1_t op2, size_t vl) {
  return __riscv_vfsub_vv_f32m1_rm (op1, op2, 0, vl);
}

vfloat32m1_t
test_vfsub_vv_f32m1_rm_m (vbool32_t mask, vfloat32m1_t op1, vfloat32m1_t op2,
			 size_t vl) {
  return __riscv_vfsub_vv_f32m1_rm_m (mask, op1, op2, 1, vl);
}

vfloat32m1_t
test_vfsub_vf_f32m1_rm (vfloat32m1_t op1, float32_t op2, size_t vl) {
  return __riscv_vfsub_vf_f32m1_rm (op1, op2, 2, vl);
}

vfloat32m1_t
test_vfsub_vf_f32m1_rm_m (vbool32_t mask, vfloat32m1_t op1, float32_t op2,
			  size_t vl) {
  return __riscv_vfsub_vf_f32m1_rm_m (mask, op1, op2, 3, vl);
}

/* { dg-final { scan-assembler-times {vfsub\.v[vf]\s+v[0-9]+,\s*v[0-9]+,\s*[fav]+[0-9]+} 4 } } */