]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/tricore: Replace target_ulong -> uint32_t in op_helper.c
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Fri, 10 Oct 2025 03:55:41 +0000 (05:55 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 16 Oct 2025 15:07:52 +0000 (17:07 +0200)
commitc558aa942119afb0c1a852a85be81b8f6e2c8b5b
treec1dfdd7317cd5525694496f02e721db9adc0cdda
parent30257dcd2b0b8aeefc0c4b8ee10524037111a0f4
target/tricore: Replace target_ulong -> uint32_t in op_helper.c

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

Therefore target_ulong type always expands to uint32_t.

This is a mechanical replacement.

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