From b981822ef4a52b4bdde31a1e9b4370bf3c334eb1 Mon Sep 17 00:00:00 2001 From: Michael Flaherty Date: Thu, 19 Jul 2018 18:26:10 -0700 Subject: [PATCH] Remove depricated register declaration --- 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 eaa8b929..0a4fe75e 100644 --- a/public/mathlib/mathlib.h +++ b/public/mathlib/mathlib.h @@ -329,7 +329,7 @@ void inline SinCos( float radians, float *sine, float *cosine ) fstp DWORD PTR [eax] } #elif defined( GNUC ) - register double __cosr, __sinr; + double __cosr, __sinr; __asm __volatile__ ("fsincos" : "=t" (__cosr), "=u" (__sinr) : "0" (radians)); *sine = __sinr;