]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/tricore: Expand TCGv type for 32-bit target
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Fri, 10 Oct 2025 03:59:37 +0000 (05:59 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 16 Oct 2025 15:07:52 +0000 (17:07 +0200)
commitcd08bcaa36b4c0437b2d61f9906bf78b99aa3684
tree2d1a43f54e57f21b69100c6338a7615da0293235
parent8a2235dd077b4715b635628a0cdde835a732ea51
target/tricore: Expand TCGv type for 32-bit target

The TriCore target is only built as 32-bit:

  $ git grep TARGET_LONG_BITS configs/targets/tricore-*
  configs/targets/tricore-softmmu.mak:2:TARGET_LONG_BITS=32

Replace:

  TCGv -> TCGv_i32
  tcg_temp_new -> tcg_temp_new_i32

This is a mechanical replacement, adapting style to pass
the checkpatch.pl script.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20251010052141.42460-13-philmd@linaro.org>
target/tricore/translate.c