* config/tc-d30v.c (d30v_cons_align): Don't align .eh_frame.

This commit is contained in:
Alan Modra 2010-10-28 05:34:55 +00:00
parent 0a2a54b8b0
commit c2ce945a08
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-10-28 Alan Modra <amodra@gmail.com>
* config/tc-d30v.c (d30v_cons_align): Don't align .eh_frame.
2010-10-26 Alan Modra <amodra@gmail.com>
* config/obj-coff.c (coff_format_ops): Fix typo.

View File

@ -1885,7 +1885,8 @@ d30v_cons_align (int size)
int log_size;
/* Don't specially align anything in debug sections. */
if ((now_seg->flags & SEC_ALLOC) == 0)
if ((now_seg->flags & SEC_ALLOC) == 0
|| strcmp (now_seg->name, ".eh_frame") == 0)
return;
log_size = 0;