diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-06-17 13:25:08 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-06-17 13:25:08 +0000 |
commit | 59223edaa18759982db0a8aced0e77457d10c68e (patch) | |
tree | 89354903b01fa0a447bffeefe00df3044495db2e /arch/sparc64/math-emu/fqtox.c | |
parent | db7d4daea91e105e3859cf461d7e53b9b77454b2 (diff) |
Merge with Linux 2.3.6. Sorry, this isn't tested on silicon, I don't
have a MIPS box at hand.
Diffstat (limited to 'arch/sparc64/math-emu/fqtox.c')
-rw-r--r-- | arch/sparc64/math-emu/fqtox.c | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/arch/sparc64/math-emu/fqtox.c b/arch/sparc64/math-emu/fqtox.c index 484ca6900..458061fb0 100644 --- a/arch/sparc64/math-emu/fqtox.c +++ b/arch/sparc64/math-emu/fqtox.c @@ -1,13 +1,25 @@ +/* $Id: fqtox.c,v 1.4 1999/05/28 13:44:34 jj Exp $ + * arch/sparc64/math-emu/fqtox.c + * + * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz) + * Copyright (C) 1999 David S. Miller (davem@redhat.com) + * + */ + +#define FP_ROUNDMODE FP_RND_ZERO +#include "sfp-util.h" #include "soft-fp.h" #include "quad.h" -int FQTOX(unsigned long *rd, void *rs2) +int FQTOX(long *rd, void *rs2) { + FP_DECL_EX; FP_DECL_Q(A); - unsigned long r; + long r; - __FP_UNPACK_Q(A, rs2); + FP_UNPACK_QP(A, rs2); FP_TO_INT_Q(r, A, 64, 1); - *rd = r; - return 0; + if (!FP_INHIBIT_RESULTS) + *rd = r; + FP_HANDLE_EXCEPTIONS; } |