Merge pull request #484 from JacobBarthelmeh/master

add ARM 64bit type macro
This commit is contained in:
dgarske
2016-07-15 09:50:39 -07:00
committed by GitHub

View File

@ -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;