diff options
author | Richard Henderson <rth@twiddle.net> | 2016-11-21 12:08:27 +0100 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2017-01-10 08:49:55 -0800 |
commit | 08da3180dca8d41881b321d43944d97a838792fa (patch) | |
tree | 6dcecee6820623f997bd4147b045624073dee557 /target/sparc/helper.c | |
parent | 250a87d5561a7212fe43357b084f69992eced75a (diff) | |
download | qemu-08da3180dca8d41881b321d43944d97a838792fa.zip qemu-08da3180dca8d41881b321d43944d97a838792fa.tar.gz qemu-08da3180dca8d41881b321d43944d97a838792fa.tar.bz2 |
target-sparc: Use ctpop helper
Acked-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/sparc/helper.c')
-rw-r--r-- | target/sparc/helper.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target/sparc/helper.c b/target/sparc/helper.c index 359b0b1..1d85489 100644 --- a/target/sparc/helper.c +++ b/target/sparc/helper.c @@ -49,11 +49,6 @@ void helper_debug(CPUSPARCState *env) } #ifdef TARGET_SPARC64 -target_ulong helper_popc(target_ulong val) -{ - return ctpop64(val); -} - void helper_tick_set_count(void *opaque, uint64_t count) { #if !defined(CONFIG_USER_ONLY) |