mirror of https://github.com/openssl/openssl.git
				
				
				
			| GCC's __ARMEL__ and __ARMEB__ defines denote little- and big-endian arm,
respectively. They are not defined on aarch64, which instead use
__AARCH64EL__ and __AARCH64EB__.
However, OpenSSL's assembly originally used the 32-bit defines on both
platforms and even define __ARMEL__ and __ARMEB__ in arm_arch.h. This is
less portable and can even interfere with other headers, which use
__ARMEL__ to detect little-endian arm.
Over time, the aarch64 assembly has switched to the correct defines,
such as in  | ||
|---|---|---|
| .. | ||
| asm | ||
| build.info | ||
| poly1305.c | ||
| poly1305_base2_44.c | ||
| poly1305_ieee754.c | ||
| poly1305_ppc.c | ||