Skip to content
Snippets Groups Projects
Commit 1233ae62 authored by Richard Henderson's avatar Richard Henderson
Browse files

* dw2gencfi.c (output_cfi_insn): Fix typo for negative offsets.

parent 757bc393
No related branches found
No related tags found
No related merge requests found
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>
......
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment