From 29d9a17dba956f7d14eb0dd15f71751fd6da02ce Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 9 Jan 2003 20:30:21 +0000 Subject: Update. 2003-01-09 Jakub Jelinek * posix/test-vfork.c (noop): Add __attribute_noinline__. * sysdeps/generic/sysdep.h (JUMPTARGET): Define if not defined. * sysdeps/i386/sysdep.h (JUMPTARGET): Undefine JUMPTARGET before defining it. * sysdeps/powerpc/powerpc32/sysdep.h (JUMPTARGET): Likewise. * sysdeps/powerpc/powerpc64/sysdep.h (JUMPTARGET): Likewise. * sysdeps/s390/s390-32/sysdep.h (JUMPTARGET): Likewise. * sysdeps/s390/s390-64/sysdep.h (JUMPTARGET): Likewise. * sysdeps/x86_64/sysdep.h (JUMPTARGET): Likewise. --- sysdeps/generic/sysdep.h | 6 +++++- sysdeps/i386/sysdep.h | 3 ++- sysdeps/powerpc/powerpc32/sysdep.h | 3 ++- sysdeps/powerpc/powerpc64/sysdep.h | 3 ++- sysdeps/s390/s390-32/sysdep.h | 3 ++- sysdeps/s390/s390-64/sysdep.h | 3 ++- sysdeps/x86_64/sysdep.h | 3 ++- 7 files changed, 17 insertions(+), 7 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/generic/sysdep.h b/sysdeps/generic/sysdep.h index 280e0e4..0d69ac6 100644 --- a/sysdeps/generic/sysdep.h +++ b/sysdeps/generic/sysdep.h @@ -1,5 +1,5 @@ /* Generic asm macros used on many machines. - Copyright (C) 1991,92,93,96,98,2002 Free Software Foundation, Inc. + Copyright (C) 1991,92,93,96,98,2002,2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -42,4 +42,8 @@ #ifndef END #define END(sym) #endif + +#ifndef JUMPTARGET +#define JUMPTARGET(sym) sym +#endif #endif /* __ASSEMBLER__ */ diff --git a/sysdeps/i386/sysdep.h b/sysdeps/i386/sysdep.h index 55f376d..9fa7f8d 100644 --- a/sysdeps/i386/sysdep.h +++ b/sysdeps/i386/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for i386. - Copyright (C) 1991,92,93,95,96,98,2002 Free Software Foundation, Inc. + Copyright (C) 1991,92,93,95,96,98,2002,2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -108,6 +108,7 @@ lose: SYSCALL_PIC_SETUP \ #define PSEUDO_END(name) \ END (name) +#undef JUMPTARGET #ifdef PIC #define JUMPTARGET(name) name##@PLT #define SYSCALL_PIC_SETUP \ diff --git a/sysdeps/powerpc/powerpc32/sysdep.h b/sysdeps/powerpc/powerpc32/sysdep.h index 169abf7..7453835 100644 --- a/sysdeps/powerpc/powerpc32/sysdep.h +++ b/sysdeps/powerpc/powerpc32/sysdep.h @@ -1,5 +1,5 @@ /* Assembly macros for 32-bit PowerPC. - Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -104,6 +104,7 @@ li 0,syscall; \ sc +#undef JUMPTARGET #ifdef PIC #define JUMPTARGET(name) name##@plt #else diff --git a/sysdeps/powerpc/powerpc64/sysdep.h b/sysdeps/powerpc/powerpc64/sysdep.h index 6a50517..c25df40 100644 --- a/sysdeps/powerpc/powerpc64/sysdep.h +++ b/sysdeps/powerpc/powerpc64/sysdep.h @@ -1,5 +1,5 @@ /* Assembly macros for 64-bit PowerPC. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -207,6 +207,7 @@ LT_LABELSUFFIX(name,_name_end): ; \ sc /* ppc64 is always PIC */ +#undef JUMPTARGET #define JUMPTARGET(name) DOT_LABEL(name) #define PSEUDO(name, syscall_name, args) \ diff --git a/sysdeps/s390/s390-32/sysdep.h b/sysdeps/s390/s390-32/sysdep.h index 2fe9f53..316fc4c 100644 --- a/sysdeps/s390/s390-32/sysdep.h +++ b/sysdeps/s390/s390-32/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for s390. - Copyright (C) 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. @@ -94,6 +94,7 @@ lose: SYSCALL_PIC_SETUP \ #define PSEUDO_END(name) \ END (name) +#undef JUMPTARGET #ifdef PIC #define JUMPTARGET(name) \ basr %r1,0 \ diff --git a/sysdeps/s390/s390-64/sysdep.h b/sysdeps/s390/s390-64/sysdep.h index 7cf745b..430cee3 100644 --- a/sysdeps/s390/s390-64/sysdep.h +++ b/sysdeps/s390/s390-64/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for 64 bit S/390. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2003 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. @@ -92,6 +92,7 @@ lose: SYSCALL_PIC_SETUP \ #define PSEUDO_END(name) \ END (name) +#undef JUMPTARGET #ifdef PIC #define JUMPTARGET(name) \ brasl name##@PLT diff --git a/sysdeps/x86_64/sysdep.h b/sysdeps/x86_64/sysdep.h index 1aa60fe..99b7e56 100644 --- a/sysdeps/x86_64/sysdep.h +++ b/sysdeps/x86_64/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for x86-64. - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -86,6 +86,7 @@ lose: \ #define PSEUDO_END(name) \ END (name) +#undef JUMPTARGET #ifdef PIC #define JUMPTARGET(name) name##@PLT #else -- cgit v1.1