reactos/sdk/lib/crt/float/amd64/logb.S

17 lines
131 B
ArmAsm

#include <asm.inc>
.code64
FUNC _logb
.endprolog
fld dword ptr [rsp + 8]
fxtract
fstp st
ret
ENDFUNC
END