[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 2/5] target-mips: remove old & unuseful comments
From: |
Yongbok Kim |
Subject: |
Re: [Qemu-devel] [PATCH 2/5] target-mips: remove old & unuseful comments |
Date: |
Mon, 13 Mar 2017 15:00:10 +0000 |
User-agent: |
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 |
On 04/03/2017 18:56, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
> ---
> target/mips/translate.c | 4 ----
> 1 file changed, 4 deletions(-)
>
> diff --git a/target/mips/translate.c b/target/mips/translate.c
> index 8b4a072ecb..1fe0ff39f2 100644
> --- a/target/mips/translate.c
> +++ b/target/mips/translate.c
> @@ -5137,7 +5137,6 @@ static void gen_mfc0(DisasContext *ctx, TCGv arg, int
> reg, int sel)
> // gen_helper_mfc0_contextconfig(arg); /* SmartMIPS ASE */
> rn = "ContextConfig";
> goto cp0_unimplemented;
> -// break;
> case 2:
> CP0_CHECK(ctx->ulri);
> tcg_gen_ld32s_tl(arg, cpu_env,
> @@ -5791,7 +5790,6 @@ static void gen_mtc0(DisasContext *ctx, TCGv arg, int
> reg, int sel)
> // gen_helper_mtc0_contextconfig(cpu_env, arg); /* SmartMIPS ASE
> */
> rn = "ContextConfig";
> goto cp0_unimplemented;
> -// break;
> case 2:
> CP0_CHECK(ctx->ulri);
> tcg_gen_st_tl(arg, cpu_env,
> @@ -6454,7 +6452,6 @@ static void gen_dmfc0(DisasContext *ctx, TCGv arg, int
> reg, int sel)
> // gen_helper_dmfc0_contextconfig(arg); /* SmartMIPS ASE */
> rn = "ContextConfig";
> goto cp0_unimplemented;
> -// break;
> case 2:
> CP0_CHECK(ctx->ulri);
> tcg_gen_ld_tl(arg, cpu_env,
> @@ -7092,7 +7089,6 @@ static void gen_dmtc0(DisasContext *ctx, TCGv arg, int
> reg, int sel)
> // gen_helper_mtc0_contextconfig(cpu_env, arg); /* SmartMIPS ASE */
> rn = "ContextConfig";
> goto cp0_unimplemented;
> -// break;
> case 2:
> CP0_CHECK(ctx->ulri);
> tcg_gen_st_tl(arg, cpu_env,
>
Reviewed-by: Yongbok Kim <address@hidden>
- [Qemu-devel] [PATCH 0/5] target-mips: fixes, start using trace points, Philippe Mathieu-Daudé, 2017/03/04
- [Qemu-devel] [PATCH 1/5] target-mips: fix compiler warnings (clang 5), Philippe Mathieu-Daudé, 2017/03/04
- [Qemu-devel] [PATCH 2/5] target-mips: remove old & unuseful comments, Philippe Mathieu-Daudé, 2017/03/04
- Re: [Qemu-devel] [PATCH 2/5] target-mips: remove old & unuseful comments,
Yongbok Kim <=
- [Qemu-devel] [PATCH 3/5] target-mips: log bad coprocessor0 register accesses with LOG_UNIMP, Philippe Mathieu-Daudé, 2017/03/04
- [Qemu-devel] [PATCH 5/5] target-mips: replace few LOG_DISAS() with trace points, Philippe Mathieu-Daudé, 2017/03/04
- [Qemu-devel] [PATCH 4/5] target-mips: replace break by goto cp0_unimplemented, Philippe Mathieu-Daudé, 2017/03/04