]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* ehopt.c (eh_frame_convert_frag): Fix missed subtype adjustment
authorRichard Henderson <rth@redhat.com>
Tue, 15 May 2001 06:10:28 +0000 (06:10 +0000)
committerRichard Henderson <rth@redhat.com>
Tue, 15 May 2001 06:10:28 +0000 (06:10 +0000)
        last change.

gas/ChangeLog
gas/ehopt.c

index f62a3a00c6ae7b51d08b0c8ac08e271ee0e32116..2e480b81505d5436fb9ab3c589f5b3cc28999430 100644 (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;
index 1d2eb245ed0ae09a1c6584e8009a79b0d6e92dce..c9499b246970a578969d738dda27d01beb2c2c56 100644 (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;
 }