brintos

brintos / llvm-project-archived public Read only

0
0
Text · 543 B · c0bcfe1 Raw
18 lines · c
1// RUN: %clang_cc1 -triple aarch64 -target-feature +sve \2// RUN:   -disable-O0-optnone -o - -fsyntax-only %s -verify3// REQUIRES: aarch64-registered-target4 5#include <arm_sve.h>6 7svfloat32_t test_exp_vv_i8mf8(svfloat32_t v) {8 9  return __builtin_elementwise_exp(v);10  // expected-error@-1 {{1st argument must be a scalar or vector of floating-point types}}11}12 13svfloat32_t test_exp2_vv_i8mf8(svfloat32_t v) {14 15  return __builtin_elementwise_exp2(v);16  // expected-error@-1 {{1st argument must be a scalar or vector of floating-point types}}17}18