]> Git Repo - qemu.git/commitdiff
target-s390x: fix EXECUTE instruction executing TRT
authorAurelien Jarno <[email protected]>
Sun, 21 Jun 2015 16:51:08 +0000 (18:51 +0200)
committerAlexander Graf <[email protected]>
Tue, 7 Jul 2015 15:51:47 +0000 (17:51 +0200)
A break is missing in the EXECUTE instruction, when executing the
TRANSLATE AND TEST instruction.

Reported-by: Paolo Bonzini <[email protected]>
Signed-off-by: Aurelien Jarno <[email protected]>
Reviewed-By: Richard Henderson <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
target-s390x/mem_helper.c

index 9f0eb1e32bb1fc49bdd8b4b802f2850f2b896a2a..6f8bd796ad4512a3518840f49a5ea86d2eb2ac43 100644 (file)
@@ -482,6 +482,7 @@ uint32_t HELPER(ex)(CPUS390XState *env, uint32_t cc, uint64_t v1,
         case 0xc00:
             helper_tr(env, l, get_address(env, 0, b1, d1),
                       get_address(env, 0, b2, d2));
+            break;
         case 0xd00:
             cc = helper_trt(env, l, get_address(env, 0, b1, d1),
                             get_address(env, 0, b2, d2));
This page took 0.02739 seconds and 4 git commands to generate.