diff options
author | Mark Mitchell <mark@markmitchell.com> | 1998-10-31 10:04:48 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1998-10-31 10:04:48 +0000 |
commit | 21af493bcded59ae22f6c5d54d1f3ce1aa97d2f7 (patch) | |
tree | d0acc8532c67275299356e1f383282782792926b /gcc | |
parent | 0d4f7920f5771b3fc88a0ad7a248675f6ae4f215 (diff) | |
download | gcc-21af493bcded59ae22f6c5d54d1f3ce1aa97d2f7.zip gcc-21af493bcded59ae22f6c5d54d1f3ce1aa97d2f7.tar.gz gcc-21af493bcded59ae22f6c5d54d1f3ce1aa97d2f7.tar.bz2 |
dwarf2out.c (output_call_frame_info): Use ASM_OUTPUT_DWARF_DELTA4 for the CIE offset to match frame.c.
* dwarf2out.c (output_call_frame_info): Use
ASM_OUTPUT_DWARF_DELTA4 for the CIE offset to match frame.c.
From-SVN: r23474
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 70c5155..248bf0e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sat Oct 31 10:02:48 1998 Mark Mitchell <mark@markmitchell.com> + + * dwarf2out.c (output_call_frame_info): Use + ASM_OUTPUT_DWARF_DELTA4 for the CIE offset to match frame.c. + Sat Oct 31 10:23:14 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> Reinstall Apr 24th fix, lost during May 6th gcc2 merge: diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 86bfec5..4c350eb 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -1830,7 +1830,7 @@ output_call_frame_info (for_eh) ASM_OUTPUT_LABEL (asm_out_file, l1); if (for_eh) - ASM_OUTPUT_DWARF_DELTA (asm_out_file, l1, "__FRAME_BEGIN__"); + ASM_OUTPUT_DWARF_DELTA4 (asm_out_file, l1, "__FRAME_BEGIN__"); else ASM_OUTPUT_DWARF_OFFSET (asm_out_file, stripattributes (FRAME_SECTION)); if (flag_debug_asm) |