Commit 066caf05 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

aes/asm/*-armv*.pl: compensate for inconsistencies in tool-chains.

Suggested by: Ard Biesheuvel
parent 70d416ec
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -62,6 +62,11 @@ $code=<<___;
.code	32
#else
.syntax	unified
# ifdef __thumb2__
.thumb
# else
.code	32
# endif
#endif

.type	AES_Te,%object
+6 −0
Original line number Diff line number Diff line
@@ -652,6 +652,12 @@ $code.=<<___;
#if __ARM_ARCH__>=7
.text
.syntax	unified 	@ ARMv7-capable assembler is expected to handle this
#ifdef __thumb2__
.thumb
#else
.code   32
#endif

.fpu	neon

.type	_bsaes_decrypt8,%function