mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[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:
parent
7fffcd30aa
commit
43ca2f7692
1 changed files with 0 additions and 17 deletions
17
reactos/lib/3rdparty/libsamplerate/float_cast.h
vendored
17
reactos/lib/3rdparty/libsamplerate/float_cast.h
vendored
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue