diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-28 22:43:01 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-01-02 16:57:03 +0100 |
commit | 82b948ef8ffd2770fb09a8640dab82f3cb2af443 (patch) | |
tree | 17380b9ddad8301a6feadc66f18986074e5e5ce8 /libc/sysdeps/linux/v850/__longjmp.S | |
parent | bad1263e3316825b5ef0037ad7a897ae62a30d7e (diff) |
remove deprecated architectures v850/i960
Both architectures are more or less deprecated.
No Linux upstream support, no gcc support for uClinux.
Diffstat (limited to 'libc/sysdeps/linux/v850/__longjmp.S')
-rw-r--r-- | libc/sysdeps/linux/v850/__longjmp.S | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/libc/sysdeps/linux/v850/__longjmp.S b/libc/sysdeps/linux/v850/__longjmp.S deleted file mode 100644 index 099609918..000000000 --- a/libc/sysdeps/linux/v850/__longjmp.S +++ /dev/null @@ -1,36 +0,0 @@ -/* - * libc/sysdeps/linux/v850/longjmp.S -- `longjmp' for v850 - * - * Copyright (C) 2001,02 NEC Corporation - * Copyright (C) 2001,02 Miles Bader <miles@gnu.org> - * - * This file is subject to the terms and conditions of the GNU Lesser - * General Public License. See the file COPYING.LIB in the main - * directory of this archive for more details. - * - * Written by Miles Bader <miles@gnu.org> - */ - -#include <clinkage.h> - - .text -C_ENTRY(__longjmp): - /* Save registers */ - mov r6, ep - sld.w 0[ep], sp - sld.w 4[ep], lp - sld.w 8[ep], r2 - sld.w 12[ep], r20 - sld.w 16[ep], r21 - sld.w 20[ep], r22 - sld.w 24[ep], r23 - sld.w 28[ep], r24 - sld.w 32[ep], r25 - sld.w 36[ep], r26 - sld.w 40[ep], r27 - sld.w 44[ep], r28 - sld.w 48[ep], r29 - mov 1, r10 /* return val */ - jmp [lp] -C_END(__longjmp) -libc_hidden_def(__longjmp) |