On 2/11/19 10:19 AM, Sven Schnelle wrote:
> case 3: /* <= / >(N | Z / !N & !Z) */
> -cond = cond_make_0(TCG_COND_LE, res);
> +tmp = tcg_temp_new();
> +tcg_gen_xor_reg(tmp, res, sv);
> +cond = cond_make_0(TCG_COND_LE, tmp);
> +tcg_temp_free(tmp);
These condition include the signed overflow bit. See Page 5-3 of
the Parisc 1.1 Architecture Reference manual for details.
Signed-off-by: Sven Schnelle
---
target/hppa/translate.c | 30 ++
1 file changed, 22 insertions(+), 8 deletions(-)
diff --git a/target/hppa/tran