From 515bf5e13543877ec7beadd5cf94d568f7f414c0 Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Thu, 14 Jul 2016 15:29:32 -0600 Subject: [PATCH] add ARM 64bit type macro --- wolfssl/wolfcrypt/types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/types.h b/wolfssl/wolfcrypt/types.h index 9b0468766..ff5d41e95 100644 --- a/wolfssl/wolfcrypt/types.h +++ b/wolfssl/wolfcrypt/types.h @@ -88,7 +88,8 @@ /* These platforms have 64-bit CPU registers. */ #if (defined(__alpha__) || defined(__ia64__) || defined(_ARCH_PPC64) || \ - defined(__mips64) || defined(__x86_64__) || defined(_M_X64)) + defined(__mips64) || defined(__x86_64__) || defined(_M_X64)) || \ + defined(__aarch64__) typedef word64 wolfssl_word; #else typedef word32 wolfssl_word;