summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2020-06-09 16:32:09 -0700
committerRichard Henderson <richard.henderson@linaro.org>2020-07-16 13:09:22 -0700
commit69c918d2ef319ac63cd759c527debc2a2bdf3a0c (patch)
tree6425877359008aa5b71e927af5c838545fd54206
parent95d1fbabae0cd44156ac4b96d512d143ca7dfd5e (diff)
downloadfocaccia-qemu-69c918d2ef319ac63cd759c527debc2a2bdf3a0c.tar.gz
focaccia-qemu-69c918d2ef319ac63cd759c527debc2a2bdf3a0c.zip
tcg: Save/restore vecop_list around minmax fallback
Forgetting this asserts when tcg_gen_cmp_vec is called from
within tcg_gen_cmpsel_vec.

Fixes: 72b4c792c7a
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--tcg/tcg-op-vec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tcg/tcg-op-vec.c b/tcg/tcg-op-vec.c
index f784517d84..ed6fb55fe1 100644
--- a/tcg/tcg-op-vec.c
+++ b/tcg/tcg-op-vec.c
@@ -657,7 +657,9 @@ static void do_minmax(unsigned vece, TCGv_vec r, TCGv_vec a,
                       TCGv_vec b, TCGOpcode opc, TCGCond cond)
 {
     if (!do_op3(vece, r, a, b, opc)) {
+        const TCGOpcode *hold_list = tcg_swap_vecop_list(NULL);
         tcg_gen_cmpsel_vec(cond, vece, r, a, b, a, b);
+        tcg_swap_vecop_list(hold_list);
     }
 }