diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-02-26 11:37:24 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-02-26 11:37:24 +0000 |
commit | aa358fad8c934e6962976ecfdc5e5ebc9d1ad83c (patch) | |
tree | c0bc694538f7c5be1761ef5fd7e9423b8dcb6a75 /src/sna | |
parent | 08747292b717fcea84ce3adc455b0161e5517e84 (diff) |
sna: Bump required GCC for sse2
gcc-4.4.5 (on squeeze) triggers an ICE when using target(sse2).
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna')
-rw-r--r-- | src/sna/compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/compiler.h b/src/sna/compiler.h index 0e0be90e..321e6978 100644 --- a/src/sna/compiler.h +++ b/src/sna/compiler.h @@ -52,7 +52,7 @@ #define flatten #endif -#if defined(__GNUC__) && (__GNUC__ >= 4) && (__GNUC_MINOR__ >= 4) +#if defined(__GNUC__) && (__GNUC__ >= 4) && (__GNUC_MINOR__ >= 5) #define sse2 __attribute__((target("sse2,fpmath=sse+387"))) #define sse4_2 __attribute__((target("sse4.2,sse2,fpmath=sse+387"))) #endif |