view gcc/testsuite/g++.dg/ext/pr93998.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 2b5abeee2509
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;
}