Commit a2859927 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

ARMv4 assembly pack: allow Thumb2 even in iOS build,


and engage it in most modules.

Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent d231a401
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ $code=<<___;
.thumb
#else
.code	32
#undef __thumb2__
#endif

.type	AES_Te,%object
+1 −0
Original line number Diff line number Diff line
@@ -731,6 +731,7 @@ $code.=<<___;
.thumb
#else
.code   32
# undef __thumb2__
#endif

.type	_bsaes_decrypt8,%function
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ $code=<<___;
#include "arm_arch.h"

.text
#if defined(__thumb2__) && !defined(__APPLE__)
#if defined(__thumb2__)
.syntax	unified
.thumb
#else
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ $code=<<___;
#include "arm_arch.h"

.text
#if defined(__thumb2__) && !defined(__APPLE__)
#if defined(__thumb2__)
.syntax	unified
.thumb
#else
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ $code.=<<___;
#include "arm_arch.h"

.text
#if defined(__thumb2__) && !defined(__APPLE__)
#if defined(__thumb2__)
.syntax	unified
.thumb
#else
Loading