summaryrefslogtreecommitdiff
path: root/gas/ehopt.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-05-15 06:10:43 +0000
committerRichard Henderson <rth@redhat.com>2001-05-15 06:10:43 +0000
commitde1cb007d96d8e3efbee1637551c3fd81e542f84 (patch)
tree6d95ecbce39a7e8900abc156af50944e6a10a102 /gas/ehopt.c
parentb08cfdb65e8c728ddefa375b3d0953773e3e761a (diff)
downloadbinutils-gdb-de1cb007d96d8e3efbee1637551c3fd81e542f84.tar.gz
* ehopt.c (eh_frame_convert_frag): Fix missed subtype adjustment
last change.
Diffstat (limited to 'gas/ehopt.c')
-rw-r--r--gas/ehopt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/ehopt.c b/gas/ehopt.c
index e556e29d173..c25fd51e5db 100644
--- a/gas/ehopt.c
+++ b/gas/ehopt.c
@@ -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;
}