* ehopt.c (eh_frame_convert_frag): Fix missed subtype adjustment

last change.
This commit is contained in:
Richard Henderson 2001-05-15 06:10:43 +00:00
parent b08cfdb65e
commit de1cb007d9
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-05-14 Richard Henderson <rth@redhat.com>
* ehopt.c (eh_frame_convert_frag): Fix missed subtype adjustment
last change.
2001-05-14 Richard Henderson <rth@redhat.com>
* ehopt.c (get_cie_info): Rename from eh_frame_code_alignment;

View File

@ -537,7 +537,8 @@ eh_frame_convert_frag (frag)
break;
}
frag->fr_fix += frag->fr_subtype;
frag->fr_fix += frag->fr_subtype & 7;
frag->fr_type = rs_fill;
frag->fr_subtype = 0;
frag->fr_offset = 0;
}