diff options
author | Alan Modra <amodra@gmail.com> | 2000-05-03 04:25:33 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-05-03 04:25:33 +0000 |
commit | da5d444c29c85d0d9b394d913b97b1a9e9418995 (patch) | |
tree | 592b854acbbd48673f53f2b71dcac44400808e0f /gas | |
parent | 02240683a51805269b8f2900e51e600b79ae2a43 (diff) | |
download | gdb-da5d444c29c85d0d9b394d913b97b1a9e9418995.zip gdb-da5d444c29c85d0d9b394d913b97b1a9e9418995.tar.gz gdb-da5d444c29c85d0d9b394d913b97b1a9e9418995.tar.bz2 |
go32 bss alignment.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index f59311f..4586107 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-05-03 Mark Elbrecht <snowball3@bigfoot.com> + + * gas/config/tc-i386.h (SUB_SEGMENT_ALIGN): If TE_GO32, return 4 + for the .bss section too. + 2000-05-02 Alan Modra <alan@linuxcare.com.au> * configure.in: Set em=linux for hppa-*-linux. diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index 1d830ee..2bf9a7f 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -120,6 +120,7 @@ extern int tc_coff_sizemachdep PARAMS ((fragS *frag)); #define SUB_SEGMENT_ALIGN(SEG) \ ((strcmp (obj_segment_name (SEG), ".text") == 0 \ || strcmp (obj_segment_name (SEG), ".data") == 0 \ + || strcmp (obj_segment_name (SEG), ".bss") == 0 \ || strncmp (obj_segment_name (SEG), ".gnu.linkonce.t", 15) == 0 \ || strncmp (obj_segment_name (SEG), ".gnu.linkonce.d", 15) == 0 \ || strncmp (obj_segment_name (SEG), ".gnu.linkonce.r", 15) == 0) \ |