Fixes a bug when compiling with gcc < 4.9.x, using OpenMP and aligned memory and -O3

This commit is contained in:
Hombre
2015-07-12 18:32:31 +02:00
parent 569f361f30
commit d1f6602f76
2 changed files with 2 additions and 2 deletions

View File

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