s_atanf.S revision 1.7
11.7Sriastrad/*	$NetBSD: s_atanf.S,v 1.7 2024/06/09 13:35:38 riastradh Exp $	*/
21.7Sriastrad
31.1Sjtc/*
41.5Ssalo * Written by J.T. Conklin <jtc@NetBSD.org>.
51.2Sjtc * Public domain.
61.1Sjtc */
71.1Sjtc
81.1Sjtc#include <machine/asm.h>
91.1Sjtc
101.4Sfvdl#include "abi.h"
111.4Sfvdl
121.7SriastradRCSID("$NetBSD: s_atanf.S,v 1.7 2024/06/09 13:35:38 riastradh Exp $")
131.1Sjtc
141.6SriastradWEAK_ALIAS(atanf, _atanf)
151.6Sriastrad
161.6SriastradENTRY(_atanf)
171.4Sfvdl	XMM_ONE_ARG_FLOAT_PROLOGUE
181.4Sfvdl	flds	ARG_FLOAT_ONE
191.1Sjtc	fld1
201.1Sjtc	fpatan
211.4Sfvdl	XMM_FLOAT_EPILOGUE
221.1Sjtc	ret
231.6SriastradEND(_atanf)
24