repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
alpha: Don't symbol_version syscalls outside libc
[glibc.git]
/
sysdeps
/
i386
/
fpu
/
s_copysignf.S
blob
57b1a6f11978dc51d765e7546768f93dd8b1745e
1
/*
2
* Written by J.T. Conklin <jtc@netbsd.org>.
3
* Public domain.
4
*/
5
6
#include <machine/asm.h>
7
8
RCSID("$NetBSD: s_copysignf.S,v 1.3 1995/05/08 23:53:25 jtc Exp $")
9
10
ENTRY(__copysignf)
11
movl 8(%esp),%edx
12
movl 4(%esp),%eax
13
andl $0x80000000,%edx
14
andl $0x7fffffff,%eax
15
orl %edx,%eax
16
movl %eax,4(%esp)
17
flds 4(%esp)
18
ret
19
END (__copysignf)
20
weak_alias (__copysignf, copysignf)