From 8d3f739383fbdf671752fdec707f1c2b9b2aa6a3 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 4 Mar 2014 21:11:38 -0800 Subject: [PATCH] mesa: Wrap SSE4.1 code in #ifdef __SSE4_1__. Because people insist on doing things like explicitly disabling SSE 4.1. Cc: "10.0 10.1" Tested-by: David Heidelberger Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71547 --- src/mesa/main/streaming-load-memcpy.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mesa/main/streaming-load-memcpy.c b/src/mesa/main/streaming-load-memcpy.c index d7147af..8427149 100644 --- a/src/mesa/main/streaming-load-memcpy.c +++ b/src/mesa/main/streaming-load-memcpy.c @@ -26,6 +26,7 @@ * */ +#ifdef __SSE4_1__ #include "main/macros.h" #include "main/streaming-load-memcpy.h" #include @@ -83,3 +84,5 @@ _mesa_streaming_load_memcpy(void *restrict dst, void *restrict src, size_t len) memcpy(d, s, len); } } + +#endif -- 2.7.4