Il 25/05/2012 12:20, Dinar Temirbulatov ha scritto: > + emit_store_flag_force (c, GT, u0, tmp, mode, 1, 1); > + emit_store_flag_force (c1, GT, u1, tmp, mode, 1, 1); > + result = expand_binop (mode, ior_optab, c, c1, cres, 1, > OPTAB_LIB_WIDEN); > + if (!result) > + return 0;
Ah, you don't need the or. u0 < tmp is already giving the overflow. Paolo