]> Git Repo - qemu.git/commitdiff
target/rx/translate: Add missing fall through comment
authorPhilippe Mathieu-Daudé <[email protected]>
Fri, 3 Apr 2020 18:44:19 +0000 (20:44 +0200)
committerRichard Henderson <[email protected]>
Wed, 8 Apr 2020 01:45:54 +0000 (18:45 -0700)
Coverity reported a missing fall through comment, add it.

Fixes: e5918d7d7f0 ("target/rx: TCG translation")
Reported-by: Coverity (CID 1422222 MISSING_BREAK)
Suggested-by: Richard Henderson <[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Message-Id: <20200403184419[email protected]>
Signed-off-by: Richard Henderson <[email protected]>
target/rx/translate.c

index b3d7305f23fb673003cdc70c5ad93c72a27f7330..61e86653a41335aa02fa610379b45dd02bc765c5 100644 (file)
@@ -2362,6 +2362,7 @@ static void rx_tr_tb_stop(DisasContextBase *dcbase, CPUState *cs)
         break;
     case DISAS_UPDATE:
         tcg_gen_movi_i32(cpu_pc, ctx->base.pc_next);
+        /* fall through */
     case DISAS_EXIT:
         tcg_gen_exit_tb(NULL, 0);
         break;
This page took 0.028195 seconds and 4 git commands to generate.