diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-19 00:36:32 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-21 11:12:57 +0200 |
commit | 9e8bad1f9c0370b2635175b34d6151b90a53da5c (patch) | |
tree | 0971254e7d21761a5dec3f946e2f65c9fd43e844 /arch/mips/math-emu/ieee754dp.h | |
parent | bee1653593b39ac85b45a057bb8c22dc1489cf6a (diff) | |
download | linux-9e8bad1f9c0370b2635175b34d6151b90a53da5c.tar.gz linux-9e8bad1f9c0370b2635175b34d6151b90a53da5c.tar.bz2 linux-9e8bad1f9c0370b2635175b34d6151b90a53da5c.zip |
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/ieee754dp.h')
-rw-r--r-- | arch/mips/math-emu/ieee754dp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/ieee754dp.h b/arch/mips/math-emu/ieee754dp.h index 3759f3f35293..1dc205880cba 100644 --- a/arch/mips/math-emu/ieee754dp.h +++ b/arch/mips/math-emu/ieee754dp.h @@ -74,7 +74,7 @@ extern union ieee754dp ieee754dp_format(int, int, u64); #define DPNORMRET2(s, e, m, name, a0, a1) \ { \ union ieee754dp V = ieee754dp_format(s, e, m); \ - if (TSTX()) \ + if (ieee754_tstx()) \ return ieee754dp_xcpt(V, name, a0, a1); \ else \ return V; \ |