patch-2.1.97 linux/arch/sparc64/math-emu/fabsq.c

Next file: linux/arch/sparc64/math-emu/fcmpeq.c
Previous file: linux/arch/sparc64/math-emu/double.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.96/linux/arch/sparc64/math-emu/fabsq.c linux/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;

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov