(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
dfp/
pr92744.C
// PR target/92744
// { dg-do compile }
// { dg-options "-Os -fno-tree-ccp" }

typedef float T __attribute__((mode(SD)));
struct A { T a; };
void foo ();

bool
operator!= (A x, A y)
{
  return x.a != y.a;
}

void
bar (A x, A y)
{
  if (x != y)
    foo ();
}