[libc++abi] Make sure we use a 32 bit guard on 32 bit Aarch64

This commit is contained in:
Louis Dionne 2020-08-04 15:09:05 -04:00
parent e8dcf5f87d
commit d0ad9e93ce
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@
#endif
// wasm32 follows the arm32 ABI convention of using 32-bit guard.
#if defined(__arm__) || defined(__wasm32__)
#if defined(__arm__) || defined(__wasm32__) || defined(__ARM64_ARCH_8_32__)
# define _LIBCXXABI_GUARD_ABI_ARM
#endif