Re: [Qemu-devel] [PATCH 22/35] target/mips: Fix data type for offset

2018-06-22 Thread Aleksandar Markovic
> From: Yongbok Kim > > Offset can be larger than 16 bit from nanoMIPS, > and immediate field can be larger than 16 bits as well. > > Signed-off-by: Yongbok Kim Reviewed-by: Aleksandar Markovic > --- > target/mips/translate.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) >

Re: [Qemu-devel] [PATCH 22/35] target/mips: Fix data type for offset

2018-06-21 Thread Philippe Mathieu-Daudé
On 06/20/2018 09:06 AM, Yongbok Kim wrote: > From: Yongbok Kim > > Offset can be larger than 16 bit from nanoMIPS, > and immediate field can be larger than 16 bits as well. > > Signed-off-by: Yongbok Kim Reviewed-by: Philippe Mathieu-Daudé > --- > target/mips/translate.c | 8 > 1

[Qemu-devel] [PATCH 22/35] target/mips: Fix data type for offset

2018-06-20 Thread Yongbok Kim
From: Yongbok Kim Offset can be larger than 16 bit from nanoMIPS, and immediate field can be larger than 16 bits as well. Signed-off-by: Yongbok Kim --- target/mips/translate.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/target/mips/translate.c