lrint.S revision 1.1
11.1Smatt/* $NetBSD: lrint.S,v 1.1 2014/09/19 17:36:25 matt Exp $ */
21.1Smatt
31.1Smatt/* The contents of this file are in the public domain. */
41.1Smatt
51.1Smatt#include <machine/asm.h>
61.1Smatt
71.1Smatt#ifdef _LP64_X
81.1SmattSTRONG_ALIAS(llrint,lrint)
91.1Smatt#endif
101.1Smatt
111.1SmattENTRY(lrint)
121.1Smatt#ifdef _LP64
131.1Smatt	fcvt.l.d	v0, fa0
141.1Smatt#else
151.1Smatt	fcvt.w.d	v0, fa0
161.1Smatt#endif
171.1Smatt	ret
181.1SmattEND(lrint)
19