Skip to content

Commit

Permalink
Disable simdize with Clang <= 13 because Clang ICEs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkretz committed Sep 27, 2024
1 parent b9874ef commit 7c4a537
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vir/simdize.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
#include "struct_reflect.h"
#include "constexpr_wrapper.h"

#if VIR_HAVE_STRUCT_REFLECT and VIR_HAVE_CONSTEXPR_WRAPPER
#if VIR_HAVE_STRUCT_REFLECT and VIR_HAVE_CONSTEXPR_WRAPPER \
and (not defined __clang__ or __clang__ > 13)
#define VIR_HAVE_SIMDIZE 1

#include <tuple>
Expand Down

0 comments on commit 7c4a537

Please sign in to comment.