mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
feat(userspace/libc): add experimental __aeabi_dcmpun() function
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
parent
42b8b6895f
commit
77e51a6f2c
@ -312,3 +312,8 @@ struct udivmod_result __aeabi_uldivmod(__UINT64_TYPE__ numerator, __UINT64_TYPE_
|
||||
result.quot = __udivmoddi4(numerator, denominator, &result.rem);
|
||||
return result;
|
||||
}
|
||||
|
||||
int __aeabi_dcmpun(aeabi_double_t a, aeabi_double_t b)
|
||||
{
|
||||
return __unorddf2(a.d, b.d);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user