Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / RISCV / rvv-intrinsics-handcrafted / vasubu-out-of-range.c
bloba534f682b5fbd7ad98292a3be19f3848c7a58c3a
1 // REQUIRES: riscv-registered-target
2 // RUN: %clang_cc1 -triple riscv64 -target-feature +f -target-feature +d \
3 // RUN: -target-feature +v -target-feature +zfh -target-feature +zvfh \
4 // RUN: -fsyntax-only -verify %s
6 #include <riscv_vector.h>
8 vuint32m1_t test_vasubu_vv_u32m1(vuint32m1_t op1, vuint32m1_t op2, size_t vl) {
9 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
10 return __riscv_vasubu_vv_u32m1(op1, op2, 5, vl);
13 vuint32m1_t test_vasubu_vx_u32m1(vuint32m1_t op1, uint32_t op2, size_t vl) {
14 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
15 return __riscv_vasubu_vx_u32m1(op1, op2, 5, vl);
18 vuint32m1_t test_vasubu_vv_u32m1_m(vbool32_t mask, vuint32m1_t op1, vuint32m1_t op2, size_t vl) {
19 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
20 return __riscv_vasubu_vv_u32m1_m(mask, op1, op2, 5, vl);
23 vuint32m1_t test_vasubu_vx_u32m1_m(vbool32_t mask, vuint32m1_t op1, uint32_t op2, size_t vl) {
24 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
25 return __riscv_vasubu_vx_u32m1_m(mask, op1, op2, 5, vl);
28 vuint32m1_t test_vasubu_vv_u32m1_tu(vuint32m1_t maskedoff, vuint32m1_t op1, vuint32m1_t op2, size_t vl) {
29 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
30 return __riscv_vasubu_vv_u32m1_tu(maskedoff, op1, op2, 5, vl);
33 vuint32m1_t test_vasubu_vx_u32m1_tu(vuint32m1_t maskedoff, vuint32m1_t op1, uint32_t op2, size_t vl) {
34 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
35 return __riscv_vasubu_vx_u32m1_tu(maskedoff, op1, op2, 5, vl);
38 vuint32m1_t test_vasubu_vv_u32m1_tum(
39 vbool32_t mask, vuint32m1_t maskedoff, vuint32m1_t op1, vuint32m1_t op2, size_t vl) {
40 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
41 return __riscv_vasubu_vv_u32m1_tum(mask, maskedoff, op1, op2, 5, vl);
44 vuint32m1_t test_vasubu_vx_u32m1_tum(vbool32_t mask, vuint32m1_t maskedoff, vuint32m1_t op1, uint32_t op2, size_t vl) {
45 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
46 return __riscv_vasubu_vx_u32m1_tum(mask, maskedoff, op1, op2, 5, vl);
49 vuint32m1_t test_vasubu_vv_u32m1_tumu(vbool32_t mask, vuint32m1_t maskedoff, vuint32m1_t op1, vuint32m1_t op2, size_t vl) {
50 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
51 return __riscv_vasubu_vv_u32m1_tumu(mask, maskedoff, op1, op2, 5, vl);
54 vuint32m1_t test_vasubu_vx_u32m1_tumu(vbool32_t mask, vuint32m1_t maskedoff, vuint32m1_t op1, uint32_t op2, size_t vl) {
55 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
56 return __riscv_vasubu_vx_u32m1_tumu(mask, maskedoff, op1, op2, 5, vl);
59 vuint32m1_t test_vasubu_vv_u32m1_mu(vbool32_t mask, vuint32m1_t maskedoff, vuint32m1_t op1, vuint32m1_t op2, size_t vl) {
60 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
61 return __riscv_vasubu_vv_u32m1_mu(mask, maskedoff, op1, op2, 5, vl);
64 vuint32m1_t test_vasubu_vx_u32m1_mu(vbool32_t mask, vuint32m1_t maskedoff, vuint32m1_t op1, uint32_t op2, size_t vl) {
65 // expected-error@+1 {{argument value 5 is outside the valid range [0, 3]}}
66 return __riscv_vasubu_vx_u32m1_mu(mask, maskedoff, op1, op2, 5, vl);