[scudo] Don't assume preprocessor macro is defined

Differential Revision: https://reviews.llvm.org/D121857
This commit is contained in:
Dominic Chen 2022-03-16 13:50:07 -07:00
parent 2f497ec3a0
commit 26a5f9bd03
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
#define SCUDO_TRUSTY 0
#endif
#if __LP64__
#if defined(__LP64__)
#define SCUDO_WORDSIZE 64U
#else
#define SCUDO_WORDSIZE 32U