diff options
author | Matt Turner <[email protected]> | 2014-03-04 21:11:38 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-03-06 15:46:54 -0800 |
commit | 8d3f739383fbdf671752fdec707f1c2b9b2aa6a3 (patch) | |
tree | a63ab1d39e365ede2cbf2ac66fbcdcea4227e27b | |
parent | c10896b593720457e99a731e9493ce8d6c497fab (diff) |
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" <[email protected]>
Tested-by: David Heidelberger <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71547
-rw-r--r-- | src/mesa/main/streaming-load-memcpy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/streaming-load-memcpy.c b/src/mesa/main/streaming-load-memcpy.c index d7147afdc5c..8427149c5cb 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 <smmintrin.h> @@ -83,3 +84,5 @@ _mesa_streaming_load_memcpy(void *restrict dst, void *restrict src, size_t len) memcpy(d, s, len); } } + +#endif |