On 10 February 2013 18:30, Richard Henderson <r...@twiddle.net> wrote: > Signed-off-by: Richard Henderson <r...@twiddle.net>
Reviewed-by: Peter Maydell <peter.mayd...@linaro.org> > - if ((unsigned int)ret >= (unsigned int)(-1133)) { > + if ((abi_ulong)ret >= (abi_ulong)-1133) { > env->active_tc.gpr[7] = 1; /* error flag */ > ret = -ret; > } else { You're only changing the cast here, so this isn't something you should feel the need to fix in this patch, but do you know what's special about -1133 ? -- PMM