diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-24 21:19:57 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-23 09:11:14 -0400 |
commit | 90efba36ed50933c6df92805bd7e5742e9cc0f46 (patch) | |
tree | edcf824726a76c68e7606954ea16fbcbc91a4f27 /arch/mips/math-emu/ieee754sp.h | |
parent | 593d33fe334761853890f2f84ed41e7c24051de2 (diff) |
MIPS: math-emu: Get rid of the useless parts of exception handling.
All it really did was throw a printk for no obvious reason.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/ieee754sp.h')
-rw-r--r-- | arch/mips/math-emu/ieee754sp.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/arch/mips/math-emu/ieee754sp.h b/arch/mips/math-emu/ieee754sp.h index 0b44569582b9..e5295d7e8ce9 100644 --- a/arch/mips/math-emu/ieee754sp.h +++ b/arch/mips/math-emu/ieee754sp.h | |||
@@ -87,21 +87,5 @@ static inline union ieee754sp buildsp(int s, int bx, unsigned m) | |||
87 | } | 87 | } |
88 | 88 | ||
89 | extern int ieee754sp_isnan(union ieee754sp); | 89 | extern int ieee754sp_isnan(union ieee754sp); |
90 | extern int __cold ieee754si_xcpt(int, const char *, ...); | 90 | extern union ieee754sp __cold ieee754sp_nanxcpt(union ieee754sp); |
91 | extern s64 __cold ieee754di_xcpt(s64, const char *, ...); | ||
92 | extern union ieee754sp __cold ieee754sp_xcpt(union ieee754sp, const char *, ...); | ||
93 | extern union ieee754sp __cold ieee754sp_nanxcpt(union ieee754sp, const char *, ...); | ||
94 | extern union ieee754sp ieee754sp_format(int, int, unsigned); | 91 | extern union ieee754sp ieee754sp_format(int, int, unsigned); |
95 | |||
96 | |||
97 | #define SPNORMRET2(s, e, m, name, a0, a1) \ | ||
98 | { \ | ||
99 | union ieee754sp V = ieee754sp_format(s, e, m); \ | ||
100 | \ | ||
101 | if (ieee754_tstx()) \ | ||
102 | return ieee754sp_xcpt(V, name, a0, a1); \ | ||
103 | else \ | ||
104 | return V; \ | ||
105 | } | ||
106 | |||
107 | #define SPNORMRET1(s, e, m, name, a0) SPNORMRET2(s, e, m, name, a0, a0) | ||