mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
target-s390x: remove unused helpers
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
d30107814c
commit
a91a1b20a2
2 changed files with 0 additions and 22 deletions
|
@ -115,26 +115,6 @@ uint64_t HELPER(divu64)(CPUS390XState *env, uint64_t ah, uint64_t al,
|
|||
return ret;
|
||||
}
|
||||
|
||||
/* absolute value 32-bit */
|
||||
uint32_t HELPER(abs_i32)(int32_t val)
|
||||
{
|
||||
if (val < 0) {
|
||||
return -val;
|
||||
} else {
|
||||
return val;
|
||||
}
|
||||
}
|
||||
|
||||
/* negative absolute value 32-bit */
|
||||
int32_t HELPER(nabs_i32)(int32_t val)
|
||||
{
|
||||
if (val < 0) {
|
||||
return val;
|
||||
} else {
|
||||
return -val;
|
||||
}
|
||||
}
|
||||
|
||||
/* count leading zeros, for find leftmost one */
|
||||
uint64_t HELPER(clz)(uint64_t v)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue