diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-09 20:30:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-09 20:30:21 +0000 |
commit | 29d9a17dba956f7d14eb0dd15f71751fd6da02ce (patch) | |
tree | 32f075141fb061c520bb74617412fa4c538b8c9d /sysdeps/generic/sysdep.h | |
parent | 8f6a393ea595c6b3673d03acf05ae5adc3836fce (diff) | |
download | glibc-29d9a17dba956f7d14eb0dd15f71751fd6da02ce.tar.gz glibc-29d9a17dba956f7d14eb0dd15f71751fd6da02ce.tar.xz glibc-29d9a17dba956f7d14eb0dd15f71751fd6da02ce.zip |
Update.
2003-01-09 Jakub Jelinek <jakub@redhat.com> * 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.
Diffstat (limited to 'sysdeps/generic/sysdep.h')
-rw-r--r-- | sysdeps/generic/sysdep.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/generic/sysdep.h b/sysdeps/generic/sysdep.h index 280e0e4841..0d69ac6fa8 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__ */ |