From c12fac7c95d9ef5eca89627f944f397af16ae9b4 Mon Sep 17 00:00:00 2001 From: Michael Flaherty Date: Thu, 19 Jul 2018 19:06:46 -0700 Subject: [PATCH] Revert "Remove depricated register declaration" This reverts commit ae9a7751254e0c113097588bc97af9980ac403e2. --- public/mathlib/mathlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/mathlib/mathlib.h b/public/mathlib/mathlib.h index 8aaaf984..80acf3a6 100644 --- a/public/mathlib/mathlib.h +++ b/public/mathlib/mathlib.h @@ -328,7 +328,7 @@ void inline SinCos( float radians, float *sine, float *cosine ) fstp DWORD PTR [eax] } #elif defined( _LINUX ) || defined ( __APPLE__ ) - double __cosr, __sinr; + register double __cosr, __sinr; __asm __volatile__ ("fsincos" : "=t" (__cosr), "=u" (__sinr) : "0" (radians));