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

	.include	"clib/unixlib/asm_dec.s"


	.global	fesetround
	NAME	fesetround
fesetround:
	@ Only FE_TONEAREST is supported.
	cmp	a1, #0
	movne	a1, #0
	moveq	a1, #1
	return	AL, pc, lr

