public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] libm/riscv: Use common fma code when necessary
@ 2020-09-04 13:11 Corinna Vinschen
0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2020-09-04 13:11 UTC (permalink / raw)
To: newlib-cvs
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=a0d7982ff486292540078c0121a435013c5ee1ea
commit a0d7982ff486292540078c0121a435013c5ee1ea
Author: Keith Packard via Newlib <newlib@sourceware.org>
Date: Thu Sep 3 13:54:33 2020 -0700
libm/riscv: Use common fma code when necessary
For RISC-V targets without hardware FMA support, include the
common fma implementation to provide that API.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diff:
---
newlib/libm/machine/riscv/s_fma.c | 2 ++
newlib/libm/machine/riscv/sf_fma.c | 2 ++
2 files changed, 4 insertions(+)
diff --git a/newlib/libm/machine/riscv/s_fma.c b/newlib/libm/machine/riscv/s_fma.c
index b7f378071..2d9ebfc99 100644
--- a/newlib/libm/machine/riscv/s_fma.c
+++ b/newlib/libm/machine/riscv/s_fma.c
@@ -46,4 +46,6 @@ fma (double x, double y, double z)
return result;
}
+#else
+#include "../../common/s_fma.c"
#endif
diff --git a/newlib/libm/machine/riscv/sf_fma.c b/newlib/libm/machine/riscv/sf_fma.c
index 8061a8abb..285c54883 100644
--- a/newlib/libm/machine/riscv/sf_fma.c
+++ b/newlib/libm/machine/riscv/sf_fma.c
@@ -46,4 +46,6 @@ fmaf (float x, float y, float z)
return result;
}
+#else
+#include "../../common/sf_fma.c"
#endif
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-09-04 13:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-04 13:11 [newlib-cygwin] libm/riscv: Use common fma code when necessary Corinna Vinschen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).