[PATCH v2 3/5] target/avr: fix avr features processing

2023-01-23 Thread Pavel Dovgalyuk
Bit vector for features has 64 bits. This patch fixes bit shifts in avr_feature and set_avr_feature functions to be 64-bit too. Signed-off-by: Pavel Dovgalyuk Reviewed-by: Michael Rolnik Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson --- target/avr/cpu.h |4 ++-- 1 fil

Re: [PATCH v2 3/5] target/avr: fix avr features processing

2023-01-19 Thread Richard Henderson
On 1/18/23 23:22, Pavel Dovgalyuk wrote: Bit vector for features has 64 bits. This patch fixes bit shifts in avr_feature and set_avr_feature functions to be 64-bit too. Signed-off-by: Pavel Dovgalyuk Reviewed-by: Michael Rolnik --- target/avr/cpu.h |4 ++-- 1 file changed, 2 insertions(+)

Re: [PATCH v2 3/5] target/avr: fix avr features processing

2023-01-19 Thread Philippe Mathieu-Daudé
On 19/1/23 10:22, Pavel Dovgalyuk wrote: Bit vector for features has 64 bits. This patch fixes bit shifts in avr_feature and set_avr_feature functions to be 64-bit too. Signed-off-by: Pavel Dovgalyuk Reviewed-by: Michael Rolnik --- target/avr/cpu.h |4 ++-- 1 file changed, 2 insertions(

[PATCH v2 3/5] target/avr: fix avr features processing

2023-01-19 Thread Pavel Dovgalyuk
Bit vector for features has 64 bits. This patch fixes bit shifts in avr_feature and set_avr_feature functions to be 64-bit too. Signed-off-by: Pavel Dovgalyuk Reviewed-by: Michael Rolnik --- target/avr/cpu.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/avr/c