diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-03 10:08:14 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-03 10:08:14 +0000 |
commit | 16bf7b3d566a8c51c9ef6934cac35ec6c36b7250 (patch) | |
tree | e5c16eb66d25dc00b4f43d2f98817a3a82ca2358 /gcc/dwarf2out.c | |
parent | 6f80979f6cc129a33ec5e698b0601e4b439d388d (diff) | |
download | gcc-16bf7b3d566a8c51c9ef6934cac35ec6c36b7250.tar.gz |
* dwarf2out.c (output_call_frame_info): Fix augmentation length.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40207 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } |