On 10/9/25 08:16, Philippe Mathieu-Daudé wrote:
The RX target is only built as 32-bit:
$ git grep TARGET_LONG_BITS configs/targets/rx-*
configs/targets/rx-softmmu.mak:5:TARGET_LONG_BITS=32
Therefore target_ulong always expands to uint32_t.\
Replace and adapt the API uses mechanically:
TCGv -> TCGv_i32
tcg_temp_new -> tcg_temp_new_i32
There is no functional change.
Signed-off-by: Philippe Mathieu-Daudé<[email protected]>
---
target/rx/translate.c | 322 +++++++++++++++++++++---------------------
1 file changed, 161 insertions(+), 161 deletions(-)
Reviewed-by: Richard Henderson <[email protected]>
r~