gcc 14 should have "#pragma GCC novector"
This commit is contained in:
parent
1318026c4e
commit
09cb2aa5f8
6
src/h.h
6
src/h.h
@ -128,7 +128,11 @@ typedef size_t ux;
|
|||||||
#define EXACTLY_GCC 1
|
#define EXACTLY_GCC 1
|
||||||
#define NOUNROLL _Pragma("GCC unroll 1")
|
#define NOUNROLL _Pragma("GCC unroll 1")
|
||||||
#define vfor _Pragma("GCC ivdep") for
|
#define vfor _Pragma("GCC ivdep") for
|
||||||
#define NOVECTORIZE
|
#if __GNUC__ >= 14
|
||||||
|
#define NOVECTORIZE _Pragma("GCC novector")
|
||||||
|
#else
|
||||||
|
#define NOVECTORIZE
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
#define NOUNROLL
|
#define NOUNROLL
|
||||||
#define NOVECTORIZE
|
#define NOVECTORIZE
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user