brintos

brintos / llvm-project-archived public Read only

0
0
Text · 835 B · 2674bed Raw
26 lines · c
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 -verify4// REQUIRES: riscv-registered-target5 6#include <riscv_vector.h>7 8 9vfloat32mf2_t test_log_vv_i8mf8(vfloat32mf2_t v) {10 11  return __builtin_elementwise_log(v);12  // expected-error@-1 {{1st argument must be a scalar or vector of floating-point types}}13}14 15vfloat32mf2_t test_log10_vv_i8mf8(vfloat32mf2_t v) {16 17  return __builtin_elementwise_log10(v);18  // expected-error@-1 {{1st argument must be a scalar or vector of floating-point types}}19}20 21vfloat32mf2_t test_log2_vv_i8mf8(vfloat32mf2_t v) {22 23  return __builtin_elementwise_log2(v);24  // expected-error@-1 {{1st argument must be a scalar or vector of floating-point types}}25}26