blob: e3c7b9cf83b26fae5d7f77909b331f8889bd523c [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
union B { int i; float f; };
extern void bar (void);
void
foo (union B x, union B y)
{
if (!(y.f > x.i))
bar ();
}