[PATCH 04/10] linux-user/arm: Remove unused get_put_user macros

2025-03-11 Thread Peter Maydell
In linux-user/arm/cpu_loop.c we define a full set of get/put macros for both code and data (since the endianness handling is different between the two). However the only one we actually use is get_user_code_u32(). Remove the rest. We leave a comment noting how data-side accesses should be handled

Re: [PATCH 04/10] linux-user/arm: Remove unused get_put_user macros

2025-03-06 Thread Richard Henderson
On 3/6/25 08:39, Peter Maydell wrote: In linux-user/arm/cpu_loop.c we define a full set of get/put macros for both code and data (since the endianness handling is different between the two). However the only one we actually use is get_user_code_u32(). Remove the rest. We leave a comment noting h