]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/hppa: Remove cond_free
authorRichard Henderson <richard.henderson@linaro.org>
Mon, 25 Mar 2024 23:50:11 +0000 (13:50 -1000)
committerRichard Henderson <richard.henderson@linaro.org>
Wed, 15 May 2024 08:03:44 +0000 (10:03 +0200)
commite0137378ed4f3eecc44b7ac9b435f9d91ca7e8fb
treeb87601b43841e2197289262710206d55342e0f94
parent3692ad21f558f1e3425a5d6cecc241d2601db022
target/hppa: Remove cond_free

Now that we do not need to free tcg temporaries, the only
thing cond_free does is reset the condition to never.
Instead, simply write a new condition over the old, which
may be simply cond_make_f() for the never condition.

The do_*_cond functions do the right thing with c or cf == 0,
so there's no need for a special case anymore.

Reviewed-by: Helge Deller <deller@gmx.de>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
target/hppa/translate.c