From: Rich Felker Date: Sun, 15 Jul 2012 00:15:02 +0000 (-0400) Subject: avoid blx instruction which does not exist on armv4t or armv4 X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=7be3b5a073e77f1147acfa728725f9f81d20ceb0;ds=sidebyside avoid blx instruction which does not exist on armv4t or armv4 --- diff --git a/src/thread/arm/clone.s b/src/thread/arm/clone.s index 127fc0be..ce372ad3 100644 --- a/src/thread/arm/clone.s +++ b/src/thread/arm/clone.s @@ -31,5 +31,6 @@ clone: mov r0,#1 svc 0 -1: blx r5 +1: mov lr,pc + bx r5 b 2b