Re: [PATCH 04/11] target/m68k: Clean up local variable shadowing

2023-09-01 Thread Peter Maydell
On Thu, 31 Aug 2023 at 23:58, Philippe Mathieu-Daudé wrote: > > Fix: > > target/m68k/translate.c:828:18: error: declaration shadows a local variable > [-Werror,-Wshadow] > TCGv tmp = tcg_temp_new(); > ^ > target/m68k/translate.c:801:15: note: previous declaration

[PATCH 04/11] target/m68k: Clean up local variable shadowing

2023-08-31 Thread Philippe Mathieu-Daudé
Fix: target/m68k/translate.c:828:18: error: declaration shadows a local variable [-Werror,-Wshadow] TCGv tmp = tcg_temp_new(); ^ target/m68k/translate.c:801:15: note: previous declaration is here TCGv reg, tmp, result; ^ Signed-off-by: Philippe