Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Sema / riscv-rvv-vector-trig-ops.c
bloba457e4848606024f8b2e95903313133cd7583852
1 // RUN: %clang_cc1 -triple riscv64 -target-feature +f -target-feature +d \
2 // RUN: -target-feature +v -target-feature +zfh -target-feature +zvfh \
3 // RUN: -disable-O0-optnone -o - -fsyntax-only %s -verify
4 // REQUIRES: riscv-registered-target
6 #include <riscv_vector.h>
9 vfloat32mf2_t test_sin_vv_i8mf8(vfloat32mf2_t v) {
11 return __builtin_elementwise_sin(v);
12 // expected-error@-1 {{1st argument must be a vector, integer or floating point type}}
15 vfloat32mf2_t test_cos_vv_i8mf8(vfloat32mf2_t v) {
17 return __builtin_elementwise_cos(v);
18 // expected-error@-1 {{1st argument must be a vector, integer or floating point type}}