diff options
author | Richard Henderson <rth@redhat.com> | 2001-09-28 20:51:15 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2001-09-28 20:51:15 +0000 |
commit | 6085af138e2327475800aeb4e203ff13bf0fb949 (patch) | |
tree | 999f3ea3f9ff68aa352183991b87374a29359e54 | |
parent | cf3dc3220483508e0c42dbb17079d2c54ba52910 (diff) | |
download | binutils-redhat-6085af138e2327475800aeb4e203ff13bf0fb949.tar.gz |
* section.c (SEC_ARCH_BIT_0): New; replace unused SEC_BALIGN.
* bfd-in2.h: Rebuild.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/bfd-in2.h | 8 | ||||
-rw-r--r-- | bfd/section.c | 8 |
3 files changed, 15 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6de96e75cd..5e34c07095 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2001-09-28 Richard Henderson <rth@redhat.com> + + * section.c (SEC_ARCH_BIT_0): New; replace unused SEC_BALIGN. + * bfd-in2.h: Rebuild. + 2001-09-28 Alan Modra <amodra@bigpond.net.au> * elf64-x86-64.c (elf64_x86_64_reloc_type_lookup): Don't map bfd diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index b23a695972..5e893f98a8 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1039,9 +1039,11 @@ typedef struct sec some relocation information too. */ #define SEC_RELOC 0x004 -#if 0 /* Obsolete ? */ -#define SEC_BALIGN 0x008 -#endif + /* ELF reserves 4 processor specific bits and 8 operating system + specific bits in sh_flags; at present we can get away with just + one in communicating between the assembler and BFD, but this + isn't a good long-term solution. */ +#define SEC_ARCH_BIT_0 0x008 /* A signal to the OS that the section contains read only data. */ #define SEC_READONLY 0x010 diff --git a/bfd/section.c b/bfd/section.c index dc875bb66e..274979b516 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -205,9 +205,11 @@ CODE_FRAGMENT . some relocation information too. *} .#define SEC_RELOC 0x004 . -.#if 0 {* Obsolete ? *} -.#define SEC_BALIGN 0x008 -.#endif +. {* ELF reserves 4 processor specific bits and 8 operating system +. specific bits in sh_flags; at present we can get away with just +. one in communicating between the assembler and BFD, but this +. isn't a good long-term solution. *} +.#define SEC_ARCH_BIT_0 0x008 . . {* A signal to the OS that the section contains read only data. *} .#define SEC_READONLY 0x010 |