Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm Newer gcc...



details:   https://anonhg.NetBSD.org/src/rev/32f8da9fe78d
branches:  trunk
changeset: 836169:32f8da9fe78d
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Sep 30 09:46:41 2018 +0000

description:
Newer gcc seems to use __ARM_ARCH_ISA_THUMB to tell use we have thumb
instructions available

diffstat:

 crypto/external/bsd/openssl/lib/libcrypto/arch/arm/arm_asm.h |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (9 lines):

diff -r 6ede90f49e73 -r 32f8da9fe78d crypto/external/bsd/openssl/lib/libcrypto/arch/arm/arm_asm.h
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/arm_asm.h      Sun Sep 30 06:14:23 2018 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/arm_asm.h      Sun Sep 30 09:46:41 2018 +0000
@@ -1,4 +1,4 @@
-#if defined (_ARM_ARCH_4T)
+#if defined (_ARM_ARCH_4T) || defined(__ARM_ARCH_ISA_THUMB)
 # define RET           bx              lr
 #else
 # define RET           mov             pc, lr



Home | Main Index | Thread Index | Old Index