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

Added absolute value.

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@1104 6dcd42c9-f523-4c6d-aada-af552506706e
parent 039bc811
No related branches found
No related tags found
No related merge requests found
/* CVS VERSION: $Id: inlineMath.h,v 1.3 2009/06/29 22:18:31 aivanov Exp $ */
/* CVS VERSION: $Id: inlineMath.h,v 1.4 2009/08/18 16:25:21 aivanov Exp $ */
#define __lrint_code \
long int __lrintres; \
......@@ -52,3 +52,6 @@ inline double lmullog210 (double __x) { register double __result; __asm __volati
/* Fast Pentium FPU log10(x) command */
inline double llog10 (double __x) { register double __result; __asm __volatile__ ("fldlg2\n\t fxch %%st(1)\n\t fyl2x": "=t" (__result) : "0" (__x)); return __result; }
/* Fast Pentium absolute value */
inline double lfabs (double __x) { register double __result; __asm __volatile__ ("fabs" : "=t" (__result) : "0" (__x)); return __result; }
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