diff options
author | Alan Modra <amodra@gmail.com> | 2001-10-05 10:53:00 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-10-05 10:53:00 +0000 |
commit | ebeb92533bfee1f2e820f86116a140ad2ad26ba4 (patch) | |
tree | d6d6df6dd606077ce831d7a95c84d130fd20fa64 /gas/subsegs.c | |
parent | 7dc8f5ceeca255c8f31ae2bc090749baf14d4d64 (diff) | |
download | binutils-ebeb92533bfee1f2e820f86116a140ad2ad26ba4.tar.gz binutils-ebeb92533bfee1f2e820f86116a140ad2ad26ba4.tar.bz2 binutils-ebeb92533bfee1f2e820f86116a140ad2ad26ba4.zip |
* subsegs.c (subseg_text_p): Return 0 for absolute section.
* read.c (do_align): If in absolute section, warn about and ignore
non-zero fill pattern.
Diffstat (limited to 'gas/subsegs.c')
-rw-r--r-- | gas/subsegs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/subsegs.c b/gas/subsegs.c index f5a1022fdf5..c8159531ef3 100644 --- a/gas/subsegs.c +++ b/gas/subsegs.c @@ -587,7 +587,7 @@ subseg_text_p (sec) #else /* ! BFD_ASSEMBLER */ const char * const *p; - if (sec == data_section || sec == bss_section) + if (sec == data_section || sec == bss_section || sec == absolute_section) return 0; for (p = nontext_section_names; *p != NULL; ++p) |