Commit bb70d419 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-19709: Unbreak the build for clang

parent 1b86ef9f
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
/* /*
Workaround GCC optimizer bug (generating SSE instuctions on unaligned data) Workaround GCC optimizer bug (generating SSE instuctions on unaligned data)
*/ */
#if defined (__GNUC__) && defined(__x86_64__) && (__GNUC__ < 6) #if defined (__GNUC__) && defined(__x86_64__) && (__GNUC__ < 6) && !defined(__clang__)
#define NEED_GCC_NO_SSE_WORKAROUND #define NEED_GCC_NO_SSE_WORKAROUND
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment