https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117549
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|UNCONFIRMED |RESOLVED --- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> --- j(d = 3, &f != m()); The order of the argument evulation is unspecified. So either can happen first. So either d = 3, or the call to m happens first. Both are correct.