Author: akhaldi Date: Tue Sep 9 18:35:49 2014 New Revision: 64096
URL: http://svn.reactos.org/svn/reactos?rev=64096&view=rev Log: [LIBSAMPLERATE] * Actually, we have these function so we don't need to have inlined versions for them here. CORE-8516
Modified: trunk/reactos/lib/3rdparty/libsamplerate/float_cast.h
Modified: trunk/reactos/lib/3rdparty/libsamplerate/float_cast.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/3rdparty/libsamplerate/... ============================================================================== --- trunk/reactos/lib/3rdparty/libsamplerate/float_cast.h [iso-8859-1] (original) +++ trunk/reactos/lib/3rdparty/libsamplerate/float_cast.h [iso-8859-1] Tue Sep 9 18:35:49 2014 @@ -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))