diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-06-02 19:07:58 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-06-05 21:28:54 +0200 |
commit | 639785601963af82eefa656ca41360e7266e73d6 (patch) | |
tree | 2ff2192099ee030d1cbbe6cc7a2ad8885e5bf40f /target | |
parent | 8daec64be9a5346da17ddba47aadb33617755478 (diff) | |
download | qemu-639785601963af82eefa656ca41360e7266e73d6.zip |
target/mips: Fix 'Uncoditional' typo
Fix Uncoditional -> Unconditional typo.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Luis Pires <luis.pires@eldorado.org.br>
Message-Id: <20210602170759.2500248-3-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'target')
-rw-r--r-- | target/mips/tcg/translate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/mips/tcg/translate.c b/target/mips/tcg/translate.c index c03a8ae1fe..797eba4434 100644 --- a/target/mips/tcg/translate.c +++ b/target/mips/tcg/translate.c @@ -12238,7 +12238,7 @@ static void gen_compute_compact_branch(DisasContext *ctx, uint32_t opc, } if (bcond_compute == 0) { - /* Uncoditional compact branch */ + /* Unconditional compact branch */ switch (opc) { case OPC_JIALC: tcg_gen_movi_tl(cpu_gpr[31], ctx->base.pc_next + 4 + m16_lowbit); @@ -19092,7 +19092,7 @@ static void gen_compute_imm_branch(DisasContext *ctx, uint32_t opc, ctx->base.is_jmp = DISAS_NORETURN; if (cond == TCG_COND_ALWAYS) { - /* Uncoditional compact branch */ + /* Unconditional compact branch */ gen_goto_tb(ctx, 0, ctx->btarget); } else { /* Conditional compact branch */ @@ -19201,7 +19201,7 @@ static void gen_compute_compact_branch_nm(DisasContext *ctx, uint32_t opc, } if (bcond_compute == 0) { - /* Uncoditional compact branch */ + /* Unconditional compact branch */ switch (opc) { case OPC_BC: gen_goto_tb(ctx, 0, ctx->btarget); |