aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1993-03-30 18:25:27 +0000
committerSteve Chamberlain <sac@cygnus>1993-03-30 18:25:27 +0000
commitaf6d4cf50dbcf7ed0c3c6fcbe450cf06594e5895 (patch)
tree0ff76490e4b46eb2c889263d25cf7a443fd4d3ae /include
parent6d98b3d2b065819b68fef3e8bcb2416466b8c65d (diff)
downloadfsf-binutils-gdb-af6d4cf50dbcf7ed0c3c6fcbe450cf06594e5895.zip
fsf-binutils-gdb-af6d4cf50dbcf7ed0c3c6fcbe450cf06594e5895.tar.gz
fsf-binutils-gdb-af6d4cf50dbcf7ed0c3c6fcbe450cf06594e5895.tar.bz2
Reflect new indirect info
Diffstat (limited to 'include')
-rw-r--r--include/bfd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/bfd.h b/include/bfd.h
index cb58f45..d41473a 100644
--- a/include/bfd.h
+++ b/include/bfd.h
@@ -604,6 +604,7 @@ typedef struct sec
#define BFD_ABS_SECTION_NAME "*ABS*"
#define BFD_UND_SECTION_NAME "*UND*"
#define BFD_COM_SECTION_NAME "*COM*"
+#define BFD_IND_SECTION_NAME "*IND*"
/* the absolute section */
extern asection bfd_abs_section;
@@ -611,10 +612,13 @@ typedef struct sec
extern asection bfd_und_section;
/* Pointer to the common section */
extern asection bfd_com_section;
+ /* Pointer to the indirect section */
+ extern asection bfd_ind_section;
extern struct symbol_cache_entry *bfd_abs_symbol;
extern struct symbol_cache_entry *bfd_com_symbol;
extern struct symbol_cache_entry *bfd_und_symbol;
+ extern struct symbol_cache_entry *bfd_ind_symbol;
#define bfd_get_section_size_before_reloc(section) \
(section->reloc_done ? (abort(),1): (section)->_raw_size)
#define bfd_get_section_size_after_reloc(section) \