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

added latan2 inlined function

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@2619 6dcd42c9-f523-4c6d-aada-af552506706e
parent 56c5a6a8
No related branches found
No related tags found
No related merge requests found
......@@ -58,5 +58,12 @@ inline double llog10 (double __x) { register double __result; __asm __volatile__
/* Fast Pentium absolute value */
inline double lfabs (double __x) { register double __result; __asm __volatile__ ("fabs" : "=t" (__result) : "0" (__x)); return __result; }
/* Fast Pentium ATAN2 */
inline double latan2(double __y, double __x)
{
register long double __atanr;
__asm __volatile ("fpatan\n\t" : "=t" (__atanr) : "0" (__x), "u" (__y));
return __atanr;
}
#endif
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