@----------------------------------------------------------------------------
@
@ \Source /usr/local/cvsroot/gccsdk/unixlib/source/math-asm/_fegetrnd.s,v $
@ \Date: 2002/09/24 21:0237 $
@ \Revision 1.3 $
@ \State Exp $
@ \Author admin $
@
@----------------------------------------------------------------------------

	.include	"clib/unixlib/asm_dec.s"


	.global	fegetround
	NAME	fegetround
fegetround:
	@ The default rounding mode cannot be set on the ARM FPU without
	@ handcoding the rounding mode into the instruction. We therefore
	@ always default to round-to-nearest.
	mov	a1, #0
	return	AL, pc, lr

