diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-22 19:56:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-22 19:56:41 +0000 |
commit | ca47b30c873c5b07e3c3b1a4be34d9618ce5d7fe (patch) | |
tree | 09fe21223e746af798da9bb8b59718ee280acce4 /include/elf/common.h | |
parent | 14e0eb3bb92db46bca37430fa8e6bb012a0f5a22 (diff) | |
download | gdb-ca47b30c873c5b07e3c3b1a4be34d9618ce5d7fe.zip gdb-ca47b30c873c5b07e3c3b1a4be34d9618ce5d7fe.tar.gz gdb-ca47b30c873c5b07e3c3b1a4be34d9618ce5d7fe.tar.bz2 |
Remove use of ELF_ST_OTHER.
Diffstat (limited to 'include/elf/common.h')
-rw-r--r-- | include/elf/common.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/elf/common.h b/include/elf/common.h index 74fd7b2..0ff2d8d 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -317,12 +317,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ the st_other field. The STV_ defines specificy the actual visibility. */ #define ELF_ST_VISIBILITY(v) ((v) & 0x3) -#define ELF_ST_OTHER(o) ((o) & ~0x3) +/* The remaining bits in the st_other field are not currently used. + They should be set to zero. */ #define ELF32_ST_VISIBILITY ELF_ST_VISIBILITY -#define ELF32_ST_OTHER ELF_ST_OTHER #define ELF64_ST_VISIBILITY ELF_ST_VISIBILITY -#define ELF64_ST_OTHER ELF_ST_OTHER #define STN_UNDEF 0 /* undefined symbol index */ |