This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 6/9] RISC-V: Split the soft-fp into rv32 and rv64


The soft-fp not support long double calculation on 32 bit.
There are losing some implementation in soft-fp/op-8.h now.
So we let 32 bit use ldbl-128 first for some emulation such
as fmal and so on. It can be merged after the long double support.
---
 sysdeps/riscv/nofpu/Implies      | 1 -
 sysdeps/riscv/rv32/nofpu/Implies | 2 ++
 sysdeps/riscv/rv64/nofpu/Implies | 1 +
 3 files changed, 3 insertions(+), 1 deletion(-)
 delete mode 100644 sysdeps/riscv/nofpu/Implies
 create mode 100644 sysdeps/riscv/rv32/nofpu/Implies
 create mode 100644 sysdeps/riscv/rv64/nofpu/Implies

diff --git a/sysdeps/riscv/nofpu/Implies b/sysdeps/riscv/nofpu/Implies
deleted file mode 100644
index abcbadb..0000000
--- a/sysdeps/riscv/nofpu/Implies
+++ /dev/null
@@ -1 +0,0 @@
-ieee754/soft-fp
diff --git a/sysdeps/riscv/rv32/nofpu/Implies b/sysdeps/riscv/rv32/nofpu/Implies
new file mode 100644
index 0000000..603ee88
--- /dev/null
+++ b/sysdeps/riscv/rv32/nofpu/Implies
@@ -0,0 +1,2 @@
+ieee754/ldbl-128
+ieee754/soft-fp
diff --git a/sysdeps/riscv/rv64/nofpu/Implies b/sysdeps/riscv/rv64/nofpu/Implies
new file mode 100644
index 0000000..abcbadb
--- /dev/null
+++ b/sysdeps/riscv/rv64/nofpu/Implies
@@ -0,0 +1 @@
+ieee754/soft-fp
-- 
2.7.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]