view gcc/testsuite/g++.target/aarch64/sve/acle/general-c++/conversion_1.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
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);
}