On 12/19/25 08:32, Philippe Mathieu-Daudé wrote:
translator_lduw() is defined in "exec/translator.h" as:192 static inline uint16_t 193 translator_lduw(CPUArchState *env, DisasContextBase *db, vaddr pc) 194 { 195 return translator_lduw_end(env, db, pc, MO_TE); 196 } Directly use the inlined form, expanding MO_TE -> MO_LE since we only build the TriCore target as little-endian. Signed-off-by: Philippe Mathieu-Daudé<[email protected]> --- target/tricore/translate.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-)
Reviewed-by: Richard Henderson <[email protected]> r~
