qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] target-mips: Fix compilation


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] target-mips: Fix compilation
Date: Wed, 9 Jun 2010 23:47:24 +0200
User-agent: Mutt/1.5.20 (2009-06-14)

On Wed, Jun 09, 2010 at 10:09:40PM +0200, Stefan Weil wrote:
> TCGv t1 needs tcg_temp_free instead of tcg_temp_free_i32.
> 
> Cc: Nathan Froyd <address@hidden>
> Cc: Aurelien Jarno <address@hidden>
> Signed-off-by: Stefan Weil <address@hidden>
> ---
>  target-mips/translate.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Thanks for spotting this, I have just applied the patch.

> diff --git a/target-mips/translate.c b/target-mips/translate.c
> index 3473281..940f57c 100644
> --- a/target-mips/translate.c
> +++ b/target-mips/translate.c
> @@ -9478,7 +9478,7 @@ static void gen_ldst_multiple (DisasContext *ctx, 
> uint32_t opc, int reglist,
>      }
>      MIPS_DEBUG("%s, %x, %d(%s)", opn, reglist, offset, regnames[base]);
>      tcg_temp_free(t0);
> -    tcg_temp_free_i32(t1);
> +    tcg_temp_free(t1);
>      tcg_temp_free_i32(t2);
>  }
>  
> -- 
> 1.7.1
> 
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net



reply via email to

[Prev in Thread] Current Thread [Next in Thread]