* dw2gencfi.c (output_cfi_insn): Fix typo for negative offsets.
authorRichard Henderson <rth@redhat.com>
Thu, 5 Jun 2003 06:53:40 +0000 (06:53 +0000)
committerRichard Henderson <rth@redhat.com>
Thu, 5 Jun 2003 06:53:40 +0000 (06:53 +0000)
gas/ChangeLog
gas/dw2gencfi.c

index 8abacaef05ff6efdd658548cabd3ef763dd964bb..4dad6781d9cc2751f5f5a3be882b7a0cb554b49d 100644 (file)
@@ -1,5 +1,7 @@
 2003-06-04  Richard Henderson  <rth@redhat.com>
 
+       * dw2gencfi.c (output_cfi_insn): Fix typo for negative offsets.
+
        * dw2gencfi.c (cfi_finish): Set .eh_frame read-only.
 
 2003-06-04  Richard Henderson  <rth@redhat.com>
index 76408a436e117a742c5d73627674f42e7b86d49a..a22452453f97ddf6aab4806a0c8a366df1cc6df3 100644 (file)
@@ -576,7 +576,7 @@ output_cfi_insn (struct cfi_insn_data *insn)
       offset = insn->u.ri.offset / DWARF2_CIE_DATA_ALIGNMENT;
       if (offset < 0)
        {
-         out_one (DW_CFA_offset_extended);
+         out_one (DW_CFA_offset_extended_sf);
          out_uleb128 (regno);
          out_sleb128 (offset);
        }
This page took 0.041218 seconds and 4 git commands to generate.