2006-10-02 Nick Clifton <nickc@redhat.com>

* arm/linux-syscalls0.c: Add arm architecture flag
        checks around bx insn.
This commit is contained in:
Jeff Johnston 2006-10-02 19:57:46 +00:00
parent 2a441538f9
commit 04a8b4ee18
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-10-02 Nick Clifton <nickc@redhat.com>
* arm/linux-syscalls0.c: Add arm architecture flag
checks around bx insn.
2006-09-07 Masaki Muranaka <monaka@monami-software.com>
* xstormy16/Makefile.in (clean): Fix a mismatched parenthesis.

View File

@ -203,7 +203,11 @@ FUNC(_socketcall_tail)
bl _socketcall
pop { r3 }
add sp, #16
#if (__ARM_ARCH__ > 4) || defined(__ARM_ARCH_4T__)
bx r3
#else
mov pc, r3
#endif
SIZE(_socketcall_tail)
#define SOCKETCALL2(name, NAME) SOCKETCALL(name, NAME)