diff options
author | Matheus Ferst <matheus.ferst@eldorado.org.br> | 2021-11-04 09:36:55 -0300 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-11-09 10:32:52 +1100 |
commit | 6e0bbc4048225cca44f6f060ccd4e286f2a06d61 (patch) | |
tree | 89e3ca5710f9b1affb52a38d587934e5c95b465f /target/ppc/int_helper.c | |
parent | 88adcbf2800c92fb55bf6ecfbaed8d1d21445bea (diff) | |
download | qemu-6e0bbc4048225cca44f6f060ccd4e286f2a06d61.zip qemu-6e0bbc4048225cca44f6f060ccd4e286f2a06d61.tar.gz qemu-6e0bbc4048225cca44f6f060ccd4e286f2a06d61.tar.bz2 |
target/ppc: Move vcfuged to vmx-impl.c.inc
There's no reason to keep vector-impl.c.inc separate from
vmx-impl.c.inc. Additionally, let GVec handle the multiple calls to
helper_cfuged for us.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Message-Id: <20211104123719.323713-2-matheus.ferst@eldorado.org.br>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/int_helper.c')
-rw-r--r-- | target/ppc/int_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/ppc/int_helper.c b/target/ppc/int_helper.c index 913d76b..f03c864 100644 --- a/target/ppc/int_helper.c +++ b/target/ppc/int_helper.c @@ -324,7 +324,7 @@ target_ulong helper_popcntb(target_ulong val) } #endif -uint64_t helper_cfuged(uint64_t src, uint64_t mask) +uint64_t helper_CFUGED(uint64_t src, uint64_t mask) { /* * Instead of processing the mask bit-by-bit from the most significant to |