s_atanf.S revision 1.6
11.1Sjtc/* 21.5Ssalo * Written by J.T. Conklin <jtc@NetBSD.org>. 31.2Sjtc * Public domain. 41.1Sjtc */ 51.1Sjtc 61.1Sjtc#include <machine/asm.h> 71.1Sjtc 81.4Sfvdl#include "abi.h" 91.4Sfvdl 101.6SriastradRCSID("$NetBSD: s_atanf.S,v 1.6 2024/06/09 13:33:36 riastradh Exp $") 111.1Sjtc 121.6SriastradWEAK_ALIAS(atanf, _atanf) 131.6Sriastrad 141.6SriastradENTRY(_atanf) 151.4Sfvdl XMM_ONE_ARG_FLOAT_PROLOGUE 161.4Sfvdl flds ARG_FLOAT_ONE 171.1Sjtc fld1 181.1Sjtc fpatan 191.4Sfvdl XMM_FLOAT_EPILOGUE 201.1Sjtc ret 211.6SriastradEND(_atanf) 22