From bc718e874a91d852bfd49e9d31bb35b4fecd93d1 Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Sat, 4 Jul 1992 10:41:16 +0000 Subject: [PATCH] Regen after bfd/syms.c change: BSF_FILE. --- include/bfd.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/include/bfd.h b/include/bfd.h index c2e378b..cd9fb44 100644 --- a/include/bfd.h +++ b/include/bfd.h @@ -972,7 +972,8 @@ typedef struct symbol_cache_entry #define BSF_WEAK 0x100000 #define BSF_CTOR 0x200000 - /* This symbol was created to point to a section */ + /* This symbol was created to point to a section, e.g. ELF's + STT_SECTION symbols. */ #define BSF_SECTION_SYM 0x400000 /* The symbol used to be a common symbol, but now it is @@ -1002,7 +1003,11 @@ typedef struct symbol_cache_entry /* Signal that the symbol is indirect. The value of the symbol is a pointer to an undefined asymbol which contains the name to use instead. */ -#define BSF_INDIRECT 0x4000000 +#define BSF_INDIRECT 0x4000000 + + /* BSF_FILE marks symbols that contain a file name. This is used + for ELF STT_FILE symbols. */ +#define BSF_FILE 0x08000000 flagword flags; -- 2.7.4