forked from KolibriOS/kolibrios
4f5f25a6c2
git-svn-id: svn://kolibrios.org@1882 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
178 B
ArmAsm
Executable File
11 lines
178 B
ArmAsm
Executable File
#include<libc/asm.h>
|
|
MK_C_SYM(copysignf)
|
|
movl 8(%esp),%edx
|
|
andl $0x80000000,%edx
|
|
movl 4(%esp),%eax
|
|
andl $0x7fffffff,%eax
|
|
orl %edx,%eax
|
|
movl %eax,4(%esp)
|
|
flds 4(%esp)
|
|
ret
|