forked from OSchip/llvm-project
[scudo] Don't assume preprocessor macro is defined
Differential Revision: https://reviews.llvm.org/D121857
This commit is contained in:
parent
2f497ec3a0
commit
26a5f9bd03
|
@ -37,7 +37,7 @@
|
|||
#define SCUDO_TRUSTY 0
|
||||
#endif
|
||||
|
||||
#if __LP64__
|
||||
#if defined(__LP64__)
|
||||
#define SCUDO_WORDSIZE 64U
|
||||
#else
|
||||
#define SCUDO_WORDSIZE 32U
|
||||
|
|
Loading…
Reference in New Issue