target/hppa: Replace MO_TE -> MO_BE

We only build the PA-RISC targets using big endianness order:

  $ git grep TARGET_BIG_ENDIAN configs/targets/hppa-*
  configs/targets/hppa-linux-user.mak:5:TARGET_BIG_ENDIAN=y
  configs/targets/hppa-softmmu.mak:2:TARGET_BIG_ENDIAN=y

Therefore the MO_TE definition always expands to MO_BE. Use the
latter to simplify.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20251009101040.18378-10-philmd@linaro.org>
This commit is contained in:
Philippe Mathieu-Daudé
2025-03-17 14:31:49 +01:00
parent 6c1c734f78
commit 7307ff9558

View File

@@ -106,7 +106,8 @@ typedef struct DisasContext {
static inline MemOp mo_endian(DisasContext *ctx)
{
return MO_TE;
/* The PSW_E bit sets the (little) endianness, but we don't implement it. */
return MO_BE;
}
/* Note that ssm/rsm instructions number PSW_W and PSW_E differently. */