Skip to content
Snippets Groups Projects
Commit 52480e8d authored by Alexander Ivanov's avatar Alexander Ivanov
Browse files

added float/double to int rounding calls

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@1061 6dcd42c9-f523-4c6d-aada-af552506706e
parent 3d294e48
No related branches found
No related tags found
No related merge requests found
/* CVS VERSION: $Id: inlineMath.h,v 1.2 2009/04/03 18:10:01 aivanov Exp $ */
/* CVS VERSION: $Id: inlineMath.h,v 1.3 2009/06/29 22:18:31 aivanov Exp $ */
#define __lrint_code \
long int __lrintres; \
__asm__ __volatile__ \
("fistpl %0" \
: "=m" (__lrintres) : "t" (__x) : "st"); \
return __lrintres
inline int rintf (float __x) { __lrint_code; }
inline int rint (double __x) { __lrint_code; }
inline void sincos(double __x, double *__sinx, double *__cosx)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment