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 incorrect test for MTHLIP


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] target-mips: fix incorrect test for MTHLIP
Date: Fri, 1 Feb 2013 00:01:10 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

On Wed, Jan 23, 2013 at 04:17:41AM +0100, Petar Jovanovic wrote:
> The pos field in the DSPControl register is not correctly initialized.
> Per documentation, the result of MTHLIP is unpredictable if the value of the
> pos field before the execution is greater than 32.
> 
> Signed-off-by: Petar Jovanovic <address@hidden>
> ---
>  tests/tcg/mips/mips32-dsp/mthlip.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/tests/tcg/mips/mips32-dsp/mthlip.c 
> b/tests/tcg/mips/mips32-dsp/mthlip.c
> index 9549aae..85f94d8 100644
> --- a/tests/tcg/mips/mips32-dsp/mthlip.c
> +++ b/tests/tcg/mips/mips32-dsp/mthlip.c
> @@ -30,7 +30,7 @@ int main()
>      assert(ach == resulth);
>      assert(acl == resultl);
>  
> -    dsp = 0x3f;
> +    dsp = 0x1f;
>      ach = 0x05;
>      acl = 0xB4CB;
>      rs  = 0x00FFBBAA;
> -- 
> 1.7.5.4
> 
> 

Thanks, applied.

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



reply via email to

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