diff options
author | Andrew MacLeod <amacleod@cygnus.com> | 1998-12-14 14:19:48 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 1998-12-14 14:19:48 +0000 |
commit | 3167de5b8b2fc00558d703d39c5dc5e783129512 (patch) | |
tree | 9c3b295b1593fd55841e42176ef3ad15e79ae042 /gcc/dwarf2out.c | |
parent | 80599fd90cc3b730255b71d0fe904cd68b68f2ec (diff) | |
download | gcc-3167de5b8b2fc00558d703d39c5dc5e783129512.zip gcc-3167de5b8b2fc00558d703d39c5dc5e783129512.tar.gz gcc-3167de5b8b2fc00558d703d39c5dc5e783129512.tar.bz2 |
output.h (force_data_section): New prototype.
* output.h (force_data_section): New prototype.
* varasm.c (force_data_section): New function to force the
data section, regardless of what in_section thinks.
* dwarf2out.c (output_call_frame_info): Call force_data_section
since varasm may not realize we've changes sections.
From-SVN: r24311
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 8661080..8f99206 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -1691,7 +1691,7 @@ output_call_frame_info (for_eh) #else tree label = get_file_function_name ('F'); - data_section (); + force_data_section (); ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE)); ASM_GLOBALIZE_LABEL (asm_out_file, IDENTIFIER_POINTER (label)); ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label)); |