17 lines · c
1// REQUIRES: riscv-registered-target2// RUN: %clang_cc1 -triple riscv64 -target-feature +f -target-feature +d \3// RUN: -target-feature +v -target-feature +zfh -target-feature +zvfh \4// RUN: -target-feature +zvksed -target-feature +experimental -fsyntax-only -verify %s5 6#include <riscv_vector.h>7 8vuint32m1_t test_vsm4k_vi_u32m1(vuint32m1_t vs2, size_t vl) {9// expected-error@+1 {{argument value 33 is outside the valid range [0, 31]}}10 return __riscv_vsm4k_vi_u32m1(vs2, 33, vl);11}12 13vuint32m1_t test_vsm4k_vi_u32m1_tu(vuint32m1_t merge, vuint32m1_t vs2, size_t vl) {14// expected-error@+1 {{argument value 33 is outside the valid range [0, 31]}}15 return __riscv_vsm4k_vi_u32m1_tu(merge, vs2, 33, vl);16}17