From 91e662d1d941215eb024787db5e910dbfb5b169f Mon Sep 17 00:00:00 2001 From: Andre McCurdy Date: Fri, 13 Sep 2019 11:44:31 -0700 Subject: add thumb2 support to arm assembler memcpy For Thumb2 compatibility, replace two instances of a single instruction "orr with a variable shift" with the two instruction equivalent. Neither of the replacements are in a performance critical loop. --- src/string/arm/memcpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string/arm/memcpy.c') diff --git a/src/string/arm/memcpy.c b/src/string/arm/memcpy.c index f703c9bd..041614f4 100644 --- a/src/string/arm/memcpy.c +++ b/src/string/arm/memcpy.c @@ -1,3 +1,3 @@ -#if __ARMEB__ || __thumb__ +#if __ARMEB__ #include "../memcpy.c" #endif -- cgit v1.2.1