view gcc/testsuite/g++.target/aarch64/sve/acle/general-c++/conversion_1.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

/* { dg-do compile } */

#include <arm_sve.h>

template<typename T>
struct S
{
  S(T);
  operator T() const;
  void *base;
};

void f(svbool_t pg, const S<svuint8_t> &u8a, const S<svuint8_t> &u8b,
       const S<svint8_t> &s8a)
{
  svadd_x(pg, u8a, u8b);
  svadd_x(pg, u8a, 1);
  svadd_x(pg, s8a, u8b); // { dg-error "no matching function for call" }
  svadd_x(pg, s8a, 1);
}