[LIBSAMPLERATE]

* Actually, we have these function so we don't need to have inlined versions for them here.
CORE-8516

svn path=/trunk/; revision=64096
This commit is contained in:
Amine Khaldi 2014-09-09 18:35:49 +00:00
parent 7fffcd30aa
commit 43ca2f7692

View file

@ -183,23 +183,6 @@
return intgr ;
}
#else
extern __inline long int
lrint (double flt)
{
int intgr ;
__asm__ __volatile__ ("fldl %1; fistpl %0;" : "=m" (intgr) : "m" (flt));
return intgr ;
}
extern __inline long int
lrintf (float flt)
{
int intgr ;
__asm__ __volatile__ ("flds %1; fistpl %0;" : "=m" (intgr) : "m" (flt));
return intgr ;
}
#endif
#elif (defined (__MWERKS__) && defined (macintosh))