]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/hppa: Explode MO_TExx -> MO_TE | MO_xx
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 9 Oct 2025 09:25:06 +0000 (11:25 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 16 Oct 2025 15:07:27 +0000 (17:07 +0200)
commit714dd08fed17b4c091bd59d46b61e923552a7358
tree90b74122628c0f51e1a3ffcc68ee62b4bfbe4c67
parent4fe2763a904a16197b5de5375e6779b81d363d03
target/hppa: Explode MO_TExx -> MO_TE | MO_xx

Extract the implicit MO_TE definition in order to replace
it in a commits.

Mechanical change using:

  $ for n in UW UL UQ UO SW SL SQ; do \
      sed -i -e "s/MO_TE$n/MO_TE | MO_$n/" \
           $(git grep -l MO_TE$n target/openrisc); \
    done

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