From: Philippe Mathieu-Daudé Date: Thu, 9 Oct 2025 14:55:50 +0000 (+0200) Subject: target/rx: Replace MO_TE -> MO_LE X-Git-Tag: v10.2.0-rc1~61^2~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f9903a8a23ec14a8bef1d9af908e505c44b977af;p=thirdparty%2Fqemu.git target/rx: Replace MO_TE -> MO_LE We only build the RX targets using little endianness order: $ git grep TARGET_BIG_ENDIAN configs/targets/rx-* $ Therefore the MO_TE definition always expands to MO_LE. Use the latter to simplify. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20251009151607.26278-8-philmd@linaro.org> --- diff --git a/target/rx/translate.c b/target/rx/translate.c index 6ed7ef629f..f2168243c8 100644 --- a/target/rx/translate.c +++ b/target/rx/translate.c @@ -74,7 +74,7 @@ static TCGv_i64 cpu_acc; static inline MemOp mo_endian(DisasContext *dc) { - return MO_TE; + return MO_LE; } /* decoder helper */