reactos/lib/sdk/crt/float/amd64/logb.S
2013-06-16 22:01:41 +00:00

16 lines
131 B
ArmAsm

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