[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 00/11] (few more) Steps towards enabling -Wshadow
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 00/11] (few more) Steps towards enabling -Wshadow |
Date: |
Fri, 1 Sep 2023 00:55:55 +0200 |
For rational see Markus cover on
https://lore.kernel.org/qemu-devel/20230831132546.3525721-1-armbru@redhat.com/
This series contains few more, my take.
Based-on: <20230831132546.3525721-1-armbru@redhat.com>
Philippe Mathieu-Daudé (11):
tcg: Clean up local variable shadowing
target/arm: Clean up local variable shadowing
target/mips: Clean up local variable shadowing
target/m68k: Clean up local variable shadowing
hw/arm/virt: Clean up local variable shadowing
hw/arm/allwinner: Clean up local variable shadowing
hw/arm/aspeed: Clean up local variable shadowing
hw/m68k: Clean up local variable shadowing
hw/ide/ahci: Clean up local variable shadowing
net/eth: Clean up local variable shadowing
sysemu/device_tree: Clean up local variable shadowing
hw/m68k/bootinfo.h | 10 ++++------
include/sysemu/device_tree.h | 6 ++----
accel/tcg/tb-maint.c | 3 +--
hw/arm/allwinner-r40.c | 7 +++----
hw/arm/aspeed_ast2600.c | 2 +-
hw/arm/virt.c | 3 +--
hw/ide/ahci.c | 6 ++----
net/eth.c | 2 +-
target/arm/hvf/hvf.c | 1 -
target/arm/tcg/mve_helper.c | 8 ++++----
target/arm/tcg/translate-m-nocp.c | 2 +-
target/m68k/translate.c | 2 +-
target/mips/tcg/msa_helper.c | 8 ++++----
target/mips/tcg/translate.c | 8 +++-----
tcg/tcg.c | 16 ++++++++--------
target/mips/tcg/nanomips_translate.c.inc | 6 +++---
16 files changed, 39 insertions(+), 51 deletions(-)
--
2.41.0
- [PATCH 00/11] (few more) Steps towards enabling -Wshadow,
Philippe Mathieu-Daudé <=
- [PATCH 01/11] tcg: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 02/11] target/arm: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 03/11] target/mips: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 04/11] target/m68k: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 05/11] hw/arm/virt: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 06/11] hw/arm/allwinner: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 07/11] hw/arm/aspeed: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 08/11] hw/m68k: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31
- [PATCH 09/11] hw/ide/ahci: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/08/31