MIPS: math-emu: Remove unused code.

Shrinks the FPU emulator by 4528 bytes.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
此提交包含在:
Ralf Baechle
2014-04-25 00:29:50 +02:00
父節點 1bc3320d95
當前提交 dfbf42b844
共有 21 個檔案被更改,包括 6 行新增699 行删除

查看文件

@@ -110,16 +110,3 @@ int ieee754sp_tint(union ieee754sp x)
else
return xm;
}
unsigned int ieee754sp_tuns(union ieee754sp x)
{
union ieee754sp hb = ieee754sp_1e31();
/* what if x < 0 ?? */
if (ieee754sp_lt(x, hb))
return (unsigned) ieee754sp_tint(x);
return (unsigned) ieee754sp_tint(ieee754sp_sub(x, hb)) |
((unsigned) 1 << 31);
}