diff options
author | Nick Clifton <nickc@redhat.com> | 2002-07-23 11:15:06 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-07-23 11:15:06 +0000 |
commit | 5e8d7549530ad332442a2dde84d45242608a0446 (patch) | |
tree | 3ab6ffd37bd211da43536d4308408a6389767e37 /bfd/elf-bfd.h | |
parent | 88ff637d20a39762ef7fe3be2812c58713fecb74 (diff) | |
download | gdb-5e8d7549530ad332442a2dde84d45242608a0446.zip gdb-5e8d7549530ad332442a2dde84d45242608a0446.tar.gz gdb-5e8d7549530ad332442a2dde84d45242608a0446.tar.bz2 |
Add new bitfield 'want_p_paddr_set_to_zero'.
Set this field for HPUX IA64 port.
Test this field when setting p_paddr.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index c79919f..4623e78 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -3,21 +3,21 @@ 2002 Free Software Foundation, Inc. Written by Cygnus Support. -This file is part of BFD, the Binary File Descriptor library. + This file is part of BFD, the Binary File Descriptor library. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LIBELF_H_ #define _LIBELF_H_ 1 @@ -859,6 +859,10 @@ struct elf_backend_data unsigned can_refcount : 1; unsigned want_got_sym : 1; unsigned want_dynbss : 1; + /* Targets which do not support physical addressing often require + that the p_paddr field in the section header to be set to zero. + This field indicates whether this behavior is required. */ + unsigned want_p_paddr_set_to_zero : 1; }; /* Information stored for each BFD section in an ELF file. This |