aboutsummaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@cygnus.com>1998-12-14 14:19:48 +0000
committerAndrew Macleod <amacleod@gcc.gnu.org>1998-12-14 14:19:48 +0000
commit3167de5b8b2fc00558d703d39c5dc5e783129512 (patch)
tree9c3b295b1593fd55841e42176ef3ad15e79ae042 /gcc/output.h
parent80599fd90cc3b730255b71d0fe904cd68b68f2ec (diff)
downloadgcc-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/output.h')
-rw-r--r--gcc/output.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/output.h b/gcc/output.h
index 4082e62..4fcce0b2 100644
--- a/gcc/output.h
+++ b/gcc/output.h
@@ -142,6 +142,9 @@ extern void text_section PROTO((void));
/* Tell assembler to switch to data section. */
extern void data_section PROTO((void));
+/* Tell assembler to make sure its in the data section. */
+extern void force_data_section PROTO((void));
+
/* Tell assembler to switch to read-only data section. This is normally
the text section. */
extern void readonly_data_section PROTO((void));