This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

fix stupid dw2gencfi typo


Blah.


r~


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

Index: dw2gencfi.c
===================================================================
RCS file: /cvs/src/src/gas/dw2gencfi.c,v
retrieving revision 1.8
diff -c -p -d -u -r1.8 dw2gencfi.c
--- dw2gencfi.c	5 Jun 2003 05:25:38 -0000	1.8
+++ dw2gencfi.c	5 Jun 2003 06:51:19 -0000
@@ -576,7 +576,7 @@ output_cfi_insn (struct cfi_insn_data *i
       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);
 	}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]