view gcc/testsuite/g++.dg/ext/pr93998.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

// PR c++/93998
// { dg-do compile { target c++11 } }

struct C
{
  constexpr bool operator== (C x) const noexcept { return v == x.v; }
  int v;
};

int
foo (const C a, const C b, bool c)
{
  return __builtin_expect (!!(a == b || c), 1) ? 0 : 1;
}