We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67be40d commit 676eaa2Copy full SHA for 676eaa2
compiler-rt/lib/scudo/standalone/memtag.h
@@ -23,8 +23,8 @@ namespace scudo {
23
// support for memory tagging if the operating system enables TBI.
24
// HWASan uses the top byte for its own purpose and Scudo should not touch it.
25
#if (__clang_major__ >= 12 && defined(__aarch64__) && !defined(__ILP32__) && \
26
- SCUDO_LINUX && \
27
- !defined(SCUDO_DISABLE_TBI) !__has_feature(hwaddress_sanitizer)) || \
+ SCUDO_LINUX && !defined(SCUDO_DISABLE_TBI) && \
+ !__has_feature(hwaddress_sanitizer)) || \
28
defined(SCUDO_FUZZ)
29
30
inline constexpr bool archSupportsMemoryTagging() { return true; }
0 commit comments