Commit 4010f30f authored by Evan Nemerson's avatar Evan Nemerson

common: add an MCST LCC check for vector features.

Since HEDLEY_GCC_VERSION is not defined for LCC as of Hedley v15 it
the SIMDE_VECTOR_* macros were no longer set.  This turns out to be a
good thing though since LCC masquarades as GCC 7.3.0 but doesn't
seem to support the vector extension features from GCC 4.8+.
parent 8d5bf660
......@@ -217,7 +217,8 @@
# define SIMDE_VECTOR_SUBSCRIPT
# elif \
HEDLEY_GCC_VERSION_CHECK(4,1,0) || \
HEDLEY_INTEL_VERSION_CHECK(13,0,0)
HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \
HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10)
# define SIMDE_VECTOR(size) __attribute__((__vector_size__(size)))
# define SIMDE_VECTOR_OPS
# elif HEDLEY_SUNPRO_VERSION_CHECK(5,12,0)
......
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