aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/riscv-sve-vector-pow-ops.c
blob: 7edaf4099c314857db2d42cd10b099adef57ce6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -triple riscv64 -target-feature +f -target-feature +d \
// RUN:   -target-feature +v -target-feature +zfh -target-feature +experimental-zvfh \
// RUN:   -disable-O0-optnone -o - -fsyntax-only %s -verify 
// REQUIRES: riscv-registered-target

#include <riscv_vector.h>


vfloat32mf2_t test_pow_vv_i8mf8(vfloat32mf2_t v) {

  return __builtin_elementwise_pow(v, v);
  // expected-error@-1 {{1st argument must be a scalar or vector of floating-point type}}
}