summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/math-emu/fabsq.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
commitdcec8a13bf565e47942a1751a9cec21bec5648fe (patch)
tree548b69625b18cc2e88c3e68d0923be546c9ebb03 /arch/sparc64/math-emu/fabsq.c
parent2e0f55e79c49509b7ff70ff1a10e1e9e90a3dfd4 (diff)
o Merge with Linux 2.1.99.
o Fix ancient bug in the ELF loader making ldd crash. o Fix ancient bug in the keyboard code for SGI, SNI and Jazz.
Diffstat (limited to 'arch/sparc64/math-emu/fabsq.c')
-rw-r--r--arch/sparc64/math-emu/fabsq.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/sparc64/math-emu/fabsq.c b/arch/sparc64/math-emu/fabsq.c
index e6aa497c8..e01b02046 100644
--- a/arch/sparc64/math-emu/fabsq.c
+++ b/arch/sparc64/math-emu/fabsq.c
@@ -1,18 +1,5 @@
-#include "soft-fp.h"
-#include "quad.h"
-
int FABSQ(unsigned long *rd, unsigned long *rs2)
{
-/*
- FP_DECL_Q(A); FP_DECL_Q(R);
-
- __FP_UNPACK_Q(A, rs2);
- _FP_FRAC_COPY_2(R, A);
- R_c = A_c;
- R_e = A_e;
- R_s = 0;
- __FP_PACK_Q(rd, R);
- */
rd[0] = rs2[0] & 0x7fffffffffffffffUL;
rd[1] = rs2[1];
return 1;