Skip to content

Commit

Permalink
MDEV-19709: Unbreak the build for clang
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jun 11, 2019
1 parent 1b86ef9 commit bb70d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sql_bitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/*
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
#endif

Expand Down

0 comments on commit bb70d41

Please sign in to comment.