1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-04 00:23:25 +08:00

Remove depricated register declaration

This commit is contained in:
Michael Flaherty 2018-07-19 18:26:10 -07:00
parent ac0eb9cebe
commit 77b861ae43

View File

@ -328,7 +328,7 @@ void inline SinCos( float radians, float *sine, float *cosine )
fstp DWORD PTR [eax] fstp DWORD PTR [eax]
} }
#elif defined( _LINUX ) || defined ( __APPLE__ ) #elif defined( _LINUX ) || defined ( __APPLE__ )
register double __cosr, __sinr; double __cosr, __sinr;
__asm __volatile__ __asm __volatile__
("fsincos" ("fsincos"
: "=t" (__cosr), "=u" (__sinr) : "0" (radians)); : "=t" (__cosr), "=u" (__sinr) : "0" (radians));