Skip to content

Commit 8aa0369

Browse files
committed
zstd: make compilable with tcc
1 parent dd47866 commit 8aa0369

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎thirdparty/zstd/zstd.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ int g_debuglevel = DEBUGLEVEL;
719719
/* vectorization
720720
* older GCC (pre gcc-4.3 picked as the cutoff) uses a different syntax,
721721
* and some compilers, like Intel ICC and MCST LCC, do not support it at all. */
722-
#if !defined(__INTEL_COMPILER) && !defined(__clang__) && defined(__GNUC__) && !defined(__LCC__)
722+
#if !defined(__INTEL_COMPILER) && !defined(__clang__) && defined(__GNUC__) && !defined(__LCC__) && !defined(__TINYC__)
723723
# if (__GNUC__ == 4 && __GNUC_MINOR__ > 3) || (__GNUC__ >= 5)
724724
# define DONT_VECTORIZE __attribute__((optimize("no-tree-vectorize")))
725725
# else

0 commit comments

Comments
 (0)