From e7f4d38a8038df5fa48221eface0e599003d9ee1 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 3 Mar 2001 02:08:14 -0800 Subject: [PATCH] * dwarf2out.c (output_call_frame_info): Fix augmentation length. From-SVN: r40207 --- gcc/ChangeLog | 4 ++++ gcc/dwarf2out.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 363f2175f48..23eba3be210 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-03-03 Richard Henderson + + * dwarf2out.c (output_call_frame_info): Fix augmentation length. + Sat Mar 3 04:17:17 2001 J"orn Rennecke * combine.c (try_combine): If split with mode-changed scratch diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 48777feb2e3..adf0204abf2 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -1678,7 +1678,7 @@ output_call_frame_info (for_eh) frame. Make the augmentation string three bytes (including the trailing null) so the pointer is 4-byte aligned. The Solaris ld can't handle unaligned relocs. */ - dw2_asm_output_nstring ("eh", 3, "CIE Augmentation"); + dw2_asm_output_nstring ("eh", -1, "CIE Augmentation"); dw2_asm_output_offset (DWARF2_ADDR_SIZE, "__EXCEPTION_TABLE__", "pointer to exception region info"); } -- 2.30.2