diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-06-12 16:49:51 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-06-12 16:49:51 +0000 |
commit | b9e57a387a6bdc15fd8bf477dc4d45131f0307d6 (patch) | |
tree | 83767656ddf103d5231f1d4348bb71e6f8401955 /gas/subsegs.c | |
parent | d84feeaca53698f5e014813e923abe6807e13f22 (diff) | |
download | gdb-b9e57a387a6bdc15fd8bf477dc4d45131f0307d6.zip gdb-b9e57a387a6bdc15fd8bf477dc4d45131f0307d6.tar.gz gdb-b9e57a387a6bdc15fd8bf477dc4d45131f0307d6.tar.bz2 |
* subsegs.c (subseg_text_p): New function.
* as.h (subseg_text_p): Declare.
* read.c (do_align): Use subseg_text_p to set the default fill.
* write.c (subsegs_finish): Likewise.
* config/obj-coff.c (write_object_file): Likewise.
* config/tc-i386.h (md_maybe_text): Don't define.
(md_do_align): Use subseg_text_p to set the default fill.
* config/tc-m32r.c (m32r_do_align): Likewise.
* config/tc-sh.c (sh_do_align): Likewise.
* config/tc-sparc.h (md_do_align): Likewise.
Diffstat (limited to 'gas/subsegs.c')
-rw-r--r-- | gas/subsegs.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gas/subsegs.c b/gas/subsegs.c index 70dda27..a8e4b4b 100644 --- a/gas/subsegs.c +++ b/gas/subsegs.c @@ -564,6 +564,21 @@ section_symbol (sec) #endif /* BFD_ASSEMBLER */ +/* Return whether the specified segment is thought to hold text. */ + +int +subseg_text_p (sec) + segT sec; +{ +#ifdef BFD_ASSEMBLER + return (bfd_get_section_flags (stdoutput, sec) & SEC_CODE) != 0; +#else + return (sec != data_section + && sec != bss_section + && strcmp (segment_name (sec), ".eh_frame") != 0); +#endif +} + void subsegs_print_statistics (file) FILE *file; |