]> git.proxmox.com Git - qemu.git/commitdiff
target-arm: Fix mixup in decoding of saturating add and sub
authorJohan Bengtsson <teofrastius@gmail.com>
Tue, 7 Dec 2010 12:01:44 +0000 (12:01 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 7 Dec 2010 12:01:44 +0000 (12:01 +0000)
The thumb2 decoder contained a mixup between the bit controlling
doubling and the bit controlling if the operation was an add or a sub.

Signed-off-by: Johan Bengtsson <teofrastius@gmail.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Nathan Froyd <froydnj@codesourcery.com>
target-arm/translate.c

index 183928bddacb7c2d5917e6f7ba2ea7bc7cf14756..947de6d18af372cab9fd1c0bce51c17710d6dc70 100644 (file)
@@ -7713,9 +7713,9 @@ static int disas_thumb2_insn(CPUState *env, DisasContext *s, uint16_t insn_hw1)
                 /* Saturating add/subtract.  */
                 tmp = load_reg(s, rn);
                 tmp2 = load_reg(s, rm);
-                if (op & 2)
-                    gen_helper_double_saturate(tmp, tmp);
                 if (op & 1)
+                    gen_helper_double_saturate(tmp, tmp);
+                if (op & 2)
                     gen_helper_sub_saturate(tmp, tmp2, tmp);
                 else
                     gen_helper_add_saturate(tmp, tmp, tmp2);