(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr42891.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2" } */
       3  
       4  union B { int i; float f; };
       5  
       6  extern void bar (void);
       7  
       8  void
       9  foo (union B x, union B y)
      10  {
      11    if (!(y.f > x.i))
      12      bar ();
      13  }