diff options
author | Richard Henderson <rth@redhat.com> | 2003-06-05 06:53:40 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2003-06-05 06:53:40 +0000 |
commit | 1233ae62992c4829296d29f67b78231db3b87a6f (patch) | |
tree | b34443766ae2394d096600accd343a1e45f64cb5 /gas/dw2gencfi.c | |
parent | 757bc39371648891e9187f0f32f2b76a5464666a (diff) | |
download | binutils-gdb-1233ae62992c4829296d29f67b78231db3b87a6f.tar.gz |
* dw2gencfi.c (output_cfi_insn): Fix typo for negative offsets.
Diffstat (limited to 'gas/dw2gencfi.c')
-rw-r--r-- | gas/dw2gencfi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c index 76408a436e1..a22452453f9 100644 --- a/gas/dw2gencfi.c +++ b/gas/dw2gencfi.c @@ -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); } |