From: Richard Henderson Date: Tue, 15 Jun 1999 15:12:23 +0000 (+0000) Subject: * section.c (SEC_SHORT): Define. X-Git-Tag: gdb-1999-06-21~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0c3ff40b22b8e1ebe83890db309ecf14523a3b87;p=thirdparty%2Fbinutils-gdb.git * section.c (SEC_SHORT): Define. * bfd-in2.h: Rebuild. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index af1aef8be7c..86d10dd3fa5 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +1999-06-15 Richard Henderson + + * section.c (SEC_SHORT): Define. + * bfd-in2.h: Rebuild. + 1999-06-13 Mark Mitchell * elflink.h (elf_link_remove_section_and_adjust_dynindices): diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 657ff064dd9..055cee2b5df 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -999,6 +999,10 @@ typedef struct sec /* This section should not be subject to garbage collection. */ #define SEC_KEEP 0x1000000 + /* This section contains "short" data, and should be placed + "near" the GP. */ +#define SEC_SHORT 0x2000000 + /* End of section flags. */ /* Some internal packed boolean fields. */ diff --git a/bfd/section.c b/bfd/section.c index da4c4bcba86..dcb240f897c 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -307,6 +307,10 @@ CODE_FRAGMENT . {* This section should not be subject to garbage collection. *} .#define SEC_KEEP 0x1000000 . +. {* This section contains "short" data, and should be placed +. "near" the GP. *} +.#define SEC_SHORT 0x2000000 +. . {* End of section flags. *} . . {* Some internal packed boolean fields. *}