summaryrefslogtreecommitdiff
path: root/arch/mips/math-emu/ieee754.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2014-04-19 02:36:32 +0400
committerRalf Baechle <ralf@linux-mips.org>2014-05-21 13:12:57 +0400
commit9e8bad1f9c0370b2635175b34d6151b90a53da5c (patch)
tree0971254e7d21761a5dec3f946e2f65c9fd43e844 /arch/mips/math-emu/ieee754.c
parentbee1653593b39ac85b45a057bb8c22dc1489cf6a (diff)
downloadlinux-9e8bad1f9c0370b2635175b34d6151b90a53da5c.tar.xz
MIPS: math-emu: Turn macros into functions where possible.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/ieee754.c')
-rw-r--r--arch/mips/math-emu/ieee754.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/math-emu/ieee754.c b/arch/mips/math-emu/ieee754.c
index 141f0cb40df4..26f785edb60c 100644
--- a/arch/mips/math-emu/ieee754.c
+++ b/arch/mips/math-emu/ieee754.c
@@ -101,7 +101,7 @@ int __cold ieee754si_xcpt(int r, const char *op, ...)
{
struct ieee754xctx ax;
- if (!TSTX())
+ if (!ieee754_tstx())
return r;
ax.op = op;
ax.rt = IEEE754_RT_SI;
@@ -116,7 +116,7 @@ s64 __cold ieee754di_xcpt(s64 r, const char *op, ...)
{
struct ieee754xctx ax;
- if (!TSTX())
+ if (!ieee754_tstx())
return r;
ax.op = op;
ax.rt = IEEE754_RT_DI;