diff options
-rw-r--r-- | gas/ChangeLog | 8 | ||||
-rw-r--r-- | gas/read.c | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index de75af1..dc965a3 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,11 @@ +2006-07-16 Thiemo Seufer <ths@mips.com> + David Ung <davidu@mips.com> + + * read.c (s_struct): Handle ELF section changing. + * config/tc-mips.c (s_align): Leave enabling auto-align to the + generic code. + (s_change_sec): Try section changing only if we output ELF. + 2006-07-15 H.J. Lu <hongjiu.lu@intel.com> * config/tc-i386.c (cpu_arch): Remove Cpu086, CpuAthlon and @@ -3132,6 +3132,12 @@ s_struct (int ignore ATTRIBUTE_UNUSED) if (flag_mri) stop = mri_comment_field (&stopc); abs_section_offset = get_absolute_expression (); +#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) + /* The ELF backend needs to know that we are changing sections, so + that .previous works correctly. */ + if (OUTPUT_FLAVOR == bfd_target_elf_flavour) + obj_elf_section_change_hook (); +#endif subseg_set (absolute_section, 0); demand_empty_rest_of_line (); if (flag_mri) |