]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/hexagon: Explode MO_TExx -> MO_TE | MO_xx
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Wed, 12 Mar 2025 09:16:53 +0000 (10:16 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 24 Apr 2025 22:09:37 +0000 (00:09 +0200)
commitfdcb7483ae08f5d21d8b5588413c0b0f3e39cda8
tree0cdce33169931ec7b943bf189fdd84034ebf70de
parent019fbfa4bcd2d3a835c241295e22ab2b5b56129b
target/hexagon: Explode MO_TExx -> MO_TE | MO_xx

Extract the implicit MO_TE definition in order to replace
it in the next commit.

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/hexagon); \
    done

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Message-Id: <20250312103238.99981-2-philmd@linaro.org>
target/hexagon/genptr.c
target/hexagon/macros.h
target/hexagon/translate.c