commit | 022e1aa7670264f520137fa8e41a83a257364f0a | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue Jul 12 17:01:46 2022 -0700 |
committer | Elliott Hughes <enh@google.com> | Tue Jul 12 17:01:46 2022 -0700 |
tree | 9d119f9c61041ed0f18acd843c260f9cc91618c7 | |
parent | c700432ba85f842562e4352da70bc82b1260e92d [diff] [blame] |
Sync libm with upstream freebsd. This is a complete update. Test: treehugger Change-Id: I91cc4d57ea49b46b607fde8fa30e2e04ecc9e690
diff --git a/libm/upstream-freebsd/lib/msun/src/w_cabsf.c b/libm/upstream-freebsd/lib/msun/src/w_cabsf.c index e7bfe22..b5065c8 100644 --- a/libm/upstream-freebsd/lib/msun/src/w_cabsf.c +++ b/libm/upstream-freebsd/lib/msun/src/w_cabsf.c
@@ -15,8 +15,7 @@ #include "math_private.h" float -cabsf(z) - float complex z; +cabsf(float complex z) { return hypotf(crealf(z), cimagf(z));