mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 20:58:15 +00:00
Add __extendhfsf2 for macOS
This commit is contained in:
@@ -719,3 +719,8 @@ gnu_h2f_ieee :: proc "c" (value: u16) -> f32 {
|
|||||||
gnu_f2h_ieee :: proc "c" (value: f32) -> u16 {
|
gnu_f2h_ieee :: proc "c" (value: f32) -> u16 {
|
||||||
return truncsfhf2(value);
|
return truncsfhf2(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@(link_name="__extendhfsf2")
|
||||||
|
extendhfsf2 :: proc "c" (value: u16) -> f32 {
|
||||||
|
return gnu_h2f_ieee(value);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user