Re: [PATCH v2] target/ppc: Rename variables to avoid local variable shadowing in VUPKPX

2023-10-04 Thread Markus Armbruster
Cédric Le Goater writes: > and fix such warnings : > > ../target/ppc/int_helper.c: In function ‘helper_vupklpx’: > ../target/ppc/int_helper.c:2025:21: warning: declaration of ‘r’ shadows a > parameter [-Wshadow=local] >2025 | uint8_t r = (e >> 10) & 0x1f;

Re: [PATCH v2] target/ppc: Rename variables to avoid local variable shadowing in VUPKPX

2023-09-29 Thread Michael Tokarev
29.09.2023 11:31, Cédric Le Goater пишет: and fix such warnings : ../target/ppc/int_helper.c: In function ‘helper_vupklpx’: ../target/ppc/int_helper.c:2025:21: warning: declaration of ‘r’ shadows a parameter [-Wshadow=local] 2025 | uint8_t r = (e >> 10) & 0x1f;

[PATCH v2] target/ppc: Rename variables to avoid local variable shadowing in VUPKPX

2023-09-29 Thread Cédric Le Goater
and fix such warnings : ../target/ppc/int_helper.c: In function ‘helper_vupklpx’: ../target/ppc/int_helper.c:2025:21: warning: declaration of ‘r’ shadows a parameter [-Wshadow=local] 2025 | uint8_t r = (e >> 10) & 0x1f; \ |