diff options
author | Richard Henderson <rth@twiddle.net> | 2016-11-21 11:48:24 +0100 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2017-01-10 08:48:56 -0800 |
commit | de26a584d23b983f4db192a078827abe6dc894ac (patch) | |
tree | 5281f89f3aacfeb3b2b6938a8f78f08e41bfcb64 /target/alpha/int_helper.c | |
parent | a768e4e99247911f00c5c0267c12d4e207d5f6cc (diff) |
target-alpha: Use ctpop helper
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/alpha/int_helper.c')
-rw-r--r-- | target/alpha/int_helper.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target/alpha/int_helper.c b/target/alpha/int_helper.c index 3c303bd1db..e43b50a743 100644 --- a/target/alpha/int_helper.c +++ b/target/alpha/int_helper.c @@ -24,11 +24,6 @@ #include "qemu/host-utils.h" -uint64_t helper_ctpop(uint64_t arg) -{ - return ctpop64(arg); -} - uint64_t helper_zapnot(uint64_t val, uint64_t mskb) { uint64_t mask; |