Skip to content

Commit f979190

Browse files
author
Raghuveer Devulapalli
committed
Disable GCC pragma unroll loop when building with sanitizer
1 parent 1f390fb commit f979190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xss-common-includes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
#define UNLIKELY(x) (x)
6666
#endif
6767

68-
#if __GNUC__ >= 8
68+
#if __GNUC__ >= 8 and !defined(__SANITIZE_ADDRESS__)
6969
#define X86_SIMD_SORT_UNROLL_LOOP(num) PRAGMA(GCC unroll num)
7070
#else
7171
#define X86_SIMD_SORT_UNROLL_LOOP(num)

0 commit comments

Comments
 (0)