projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
math: add fma TODO comments about the underflow issue
[oweals/musl.git]
/
src
/
math
/
copysignf.c
1
#include "libm.h"
2
3
float copysignf(float x, float y) {
4
union fshape ux, uy;
5
6
ux.value = x;
7
uy.value = y;
8
ux.bits &= (uint32_t)-1>>1;
9
ux.bits |= uy.bits & (uint32_t)1<<31;
10
return ux.value;
11
}