2013-12-06 12:04:52 +01:00
|
|
|
/* $NetBSD: flt_rounds_softfloat.S,v 1.5 2013/07/18 21:36:08 matt Exp $ */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, Apr 6, 1995
|
|
|
|
* Public domain.
|
|
|
|
|
|
|
|
* Broken by Bruce O'Neel Aug 4 2003
|
|
|
|
gcc no longer seems to export fpCCR so this fails.
|
|
|
|
for now just return 0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
|
|
|
.text
|
2013-12-06 12:04:52 +01:00
|
|
|
#if 0
|
2011-02-14 20:36:03 +01:00
|
|
|
/* NB: this is tied to the gcc-2.95 lb1sf68.asm: */
|
|
|
|
_map:
|
|
|
|
.byte 1 /* round to nearest */
|
|
|
|
.byte 0 /* round to zero */
|
|
|
|
.byte 2 /* round to positive infinity */
|
|
|
|
.byte 3 /* round to negative infinity */
|
2013-12-06 12:04:52 +01:00
|
|
|
#endif
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
ENTRY(__flt_rounds)
|
|
|
|
/* lea _C_LABEL(_fpCCR),%a0 | check the rounding mode */
|
2013-12-06 12:04:52 +01:00
|
|
|
/* movew 6(%a0),%d0 | rounding mode in d0 */
|
2011-02-14 20:36:03 +01:00
|
|
|
/* lea _map,%a0 */
|
|
|
|
moveb #0,%d0
|
|
|
|
rts
|
2013-12-06 12:04:52 +01:00
|
|
|
END(__flt_rounds)
|