hackf: remove deprecated register keyword, make c++17 happy

This fixes https://osmocom.org/issues/6004
This commit is contained in:
Eric Wild 2023-10-29 16:24:23 +01:00
parent 674863d9cb
commit 8b33260d66
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ void convert_avx(const float* inbuf, int8_t* outbuf,const unsigned int count)
#elif USE_SSE2
void convert_sse2(const float* inbuf, int8_t* outbuf,const unsigned int count)
{
const register __m128 mulme = _mm_set_ps( 127.0f, 127.0f, 127.0f, 127.0f );
const __m128 mulme = _mm_set_ps( 127.0f, 127.0f, 127.0f, 127.0f );
__m128 itmp1,itmp2,itmp3,itmp4;
__m128i otmp1,otmp2,otmp3,otmp4;