mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
target-alpha: Use the ctz and clz opcodes
Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
8d8dd793da
commit
881549da4b
3 changed files with 2 additions and 14 deletions
|
@ -29,16 +29,6 @@ uint64_t helper_ctpop(uint64_t arg)
|
|||
return ctpop64(arg);
|
||||
}
|
||||
|
||||
uint64_t helper_ctlz(uint64_t arg)
|
||||
{
|
||||
return clz64(arg);
|
||||
}
|
||||
|
||||
uint64_t helper_cttz(uint64_t arg)
|
||||
{
|
||||
return ctz64(arg);
|
||||
}
|
||||
|
||||
uint64_t helper_zapnot(uint64_t val, uint64_t mskb)
|
||||
{
|
||||
uint64_t mask;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue