diff options
author | Matheus Ferst | 2022-05-17 14:39:28 +0200 |
---|---|---|
committer | Daniel Henrique Barboza | 2022-05-26 22:11:33 +0200 |
commit | 89a5a1aee2df29c311d11386923b750bf1ea6bc2 (patch) | |
tree | de794a2fca231de47661eb22a7502beed8e37cf7 /tcg/ppc | |
parent | target/ppc: declare vmsum[um]bm helpers with call flags (diff) | |
download | qemu-89a5a1aee2df29c311d11386923b750bf1ea6bc2.tar.gz qemu-89a5a1aee2df29c311d11386923b750bf1ea6bc2.tar.xz qemu-89a5a1aee2df29c311d11386923b750bf1ea6bc2.zip |
target/ppc: declare vmsumuh[ms] helper with call flags
Move vmsumuhm and vmsumuhs to decodetree, declare vmsumuhm helper with
TCG_CALL_NO_RWG, and drop the unused env argument.
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220517123929.284511-12-matheus.ferst@eldorado.org.br>
[danielhb: added #undef VMSUMUHM to fix ppc64 build]
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'tcg/ppc')
-rw-r--r-- | tcg/ppc/tcg-target.c.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/ppc/tcg-target.c.inc b/tcg/ppc/tcg-target.c.inc index cfcd121f9c..fc8ae47293 100644 --- a/tcg/ppc/tcg-target.c.inc +++ b/tcg/ppc/tcg-target.c.inc @@ -4008,3 +4008,4 @@ void tcg_register_jit(const void *buf, size_t buf_size) #undef VMULOUB #undef VMULOUH #undef VMULOUW +#undef VMSUMUHM |