diff options
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/arm/clone.S | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/arm/vfork.S | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/arm/clone.S b/libc/sysdeps/linux/arm/clone.S index 66848e548..a5a847d1e 100644 --- a/libc/sysdeps/linux/arm/clone.S +++ b/libc/sysdeps/linux/arm/clone.S @@ -52,7 +52,7 @@ clone: DO_CALL (clone) movs a1, a1 blt __error -#if defined(__THUMB_INTERWORK__) +#if defined(__USE_BX__) bxne lr #else movne pc, lr diff --git a/libc/sysdeps/linux/arm/vfork.S b/libc/sysdeps/linux/arm/vfork.S index 486a7e8e4..607ffe5a6 100644 --- a/libc/sysdeps/linux/arm/vfork.S +++ b/libc/sysdeps/linux/arm/vfork.S @@ -26,7 +26,7 @@ __vfork: #ifdef __NR_vfork DO_CALL (vfork) cmn r0, #4096 -#if defined(__THUMB_INTERWORK__) +#if defined(__USE_BX__) bxcc lr #else movcc pc, lr @@ -43,7 +43,7 @@ __vfork: cmn r0, #4096 /* Syscall worked. Return to child/parent */ -#if defined(__THUMB_INTERWORK__) +#if defined(__USE_BX__) bxcc lr #else movcc pc, lr |