Skip to content

Commit 676eaa2

Browse files
committed
[compiler-rt][scudo] Add missing preprocessor token
This should fix build errors seen on bots like https://lab.llvm.org/buildbot/#/builders/57/builds/18263.
1 parent 67be40d commit 676eaa2

File tree

1 file changed

+2
-2
lines changed
  • compiler-rt/lib/scudo/standalone

1 file changed

+2
-2
lines changed

compiler-rt/lib/scudo/standalone/memtag.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ namespace scudo {
2323
// support for memory tagging if the operating system enables TBI.
2424
// HWASan uses the top byte for its own purpose and Scudo should not touch it.
2525
#if (__clang_major__ >= 12 && defined(__aarch64__) && !defined(__ILP32__) && \
26-
SCUDO_LINUX && \
27-
!defined(SCUDO_DISABLE_TBI) !__has_feature(hwaddress_sanitizer)) || \
26+
SCUDO_LINUX && !defined(SCUDO_DISABLE_TBI) && \
27+
!__has_feature(hwaddress_sanitizer)) || \
2828
defined(SCUDO_FUZZ)
2929

3030
inline constexpr bool archSupportsMemoryTagging() { return true; }

0 commit comments

Comments
 (0)