From: Richard Stallman Date: Wed, 16 Dec 1992 18:59:44 +0000 (+0000) Subject: (assemble_trampoline_template): Use readonly_data_section, not text_section. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8c29f855dffe19d597187293ac21e87d249357f;p=gcc.git (assemble_trampoline_template): Use readonly_data_section, not text_section. From-SVN: r2885 --- diff --git a/gcc/varasm.c b/gcc/varasm.c index f8d011a389f..23722ca6ea5 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1074,7 +1074,7 @@ assemble_trampoline_template () /* Some assemblers don't like instructions in data segment, so always put trampoline template in text segment. */ - text_section (); + readonly_data_section (); /* Write the assembler code to define one. */ align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);