diff options
author | Vincent Chen <vincentc@andestech.com> | 2019-05-20 04:21:13 +0300 |
---|---|---|
committer | Greentime Hu <greentime@andestech.com> | 2019-05-31 10:23:26 +0300 |
commit | 932296120543149e3397af252e7daee7af37eb05 (patch) | |
tree | ad3c0a00a16cae8cab3d85c3b74060893003ee83 /arch/nds32/math-emu/Makefile | |
parent | ed32949e0acb73e7bc054bb02e0453d4d561ceda (diff) | |
download | linux-932296120543149e3397af252e7daee7af37eb05.tar.xz |
nds32: add new emulations for floating point instruction
The existing floating point emulations is only available for floating
instruction that possibly issue denormalized input and underflow
exceptions. These existing FPU emulations are not sufficient when IEx
Trap is enabled because some floating point instructions only issue inexact
exception. This patch adds the emulations of such floating point
instructions.
Signed-off-by: Vincent Chen <vincentc@andestech.com>
Acked-by: Greentime Hu <greentime@andestech.com>
Signed-off-by: Greentime Hu <greentime@andestech.com>
Diffstat (limited to 'arch/nds32/math-emu/Makefile')
-rw-r--r-- | arch/nds32/math-emu/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/nds32/math-emu/Makefile b/arch/nds32/math-emu/Makefile index 947fe0c3d52f..80932ac7ed53 100644 --- a/arch/nds32/math-emu/Makefile +++ b/arch/nds32/math-emu/Makefile @@ -4,4 +4,6 @@ obj-y := fpuemu.o \ fdivd.o fmuld.o fsubd.o faddd.o fs2d.o fsqrtd.o fcmpd.o fnegs.o \ - fdivs.o fmuls.o fsubs.o fadds.o fd2s.o fsqrts.o fcmps.o fnegd.o + fd2si.o fd2ui.o fd2siz.o fd2uiz.o fsi2d.o fui2d.o \ + fdivs.o fmuls.o fsubs.o fadds.o fd2s.o fsqrts.o fcmps.o fnegd.o \ + fs2si.o fs2ui.o fs2siz.o fs2uiz.o fsi2s.o fui2s.o |