summaryrefslogtreecommitdiff
path: root/src/string/arm/memcpy.c
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2019-09-13 11:44:31 -0700
committerRich Felker <dalias@aerifal.cx>2020-01-16 15:44:26 -0500
commit91e662d1d941215eb024787db5e910dbfb5b169f (patch)
treed3b2506ee656488fd55cdae9923373c2e354a8dd /src/string/arm/memcpy.c
parent0ff18be20833928064f6eff88e590cea9625f602 (diff)
downloadmusl-91e662d1d941215eb024787db5e910dbfb5b169f.tar.gz
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.
Diffstat (limited to 'src/string/arm/memcpy.c')
-rw-r--r--src/string/arm/memcpy.c2
1 files changed, 1 insertions, 1 deletions
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