12 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_pow_vv_i8mf8(svfloat32_t v) {8 9 return __builtin_elementwise_pow(v, v);10 // expected-error@-1 {{1st argument must be a scalar or vector of floating-point types}}11}12