diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-25 02:29:50 +0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-23 17:11:14 +0400 |
commit | dfbf42b844a5f307bd66716da65f01be9107bc0b (patch) | |
tree | 99da96f3c2faeb7ec202c681fe98d3a1f8f8ce40 /arch/mips/math-emu/dp_tint.c | |
parent | 1bc3320d954183031bd3dc1dac36858c3c96e0b3 (diff) | |
download | linux-dfbf42b844a5f307bd66716da65f01be9107bc0b.tar.xz |
MIPS: math-emu: Remove unused code.
Shrinks the FPU emulator by 4528 bytes.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/dp_tint.c')
-rw-r--r-- | arch/mips/math-emu/dp_tint.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/mips/math-emu/dp_tint.c b/arch/mips/math-emu/dp_tint.c index 8c39a40d7fe9..1270009aee9b 100644 --- a/arch/mips/math-emu/dp_tint.c +++ b/arch/mips/math-emu/dp_tint.c @@ -106,16 +106,3 @@ int ieee754dp_tint(union ieee754dp x) else return xm; } - - -unsigned int ieee754dp_tuns(union ieee754dp x) -{ - union ieee754dp hb = ieee754dp_1e31(); - - /* what if x < 0 ?? */ - if (ieee754dp_lt(x, hb)) - return (unsigned) ieee754dp_tint(x); - - return (unsigned) ieee754dp_tint(ieee754dp_sub(x, hb)) | - ((unsigned) 1 << 31); -} |