Possibly fixes some compile errors when using gcc 5.x on windows, no Issue

This commit is contained in:
Ingo
2015-08-05 18:31:10 +02:00
parent aeb11c78e0
commit 37352b02ef
3 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ typedef __m128i vint2;
//
#ifdef __GNUC__
#if __GNUC__ == 4 && __GNUC_MINOR__ >= 9
#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 9) || __GNUC__ > 4
#define LVF(x) _mm_load_ps(&x)
#define LVFU(x) _mm_loadu_ps(&x)
#define STVF(x,y) _mm_store_ps(&x,y)