Commit 0ec44be4 by Doug Evans

lynx.h (EXTRA_SECTIONS): Delete in_bss.

	* lynx.h (EXTRA_SECTIONS): Delete in_bss.
	(EXTRA_SECTION_FUNCTIONS): Delete BSS_SECTION_FUNCTION.
	* svr3.h (EXTRA_SECTIONS): Likewise.
	(BSS_SECTION_FUNCTION): Delete.

From-SVN: r11367
parent 6505a117
/* svr3.h -- operating system specific defines to be used when
targeting GCC for some generic System V Release 3 system.
Copyright (C) 1991 Free Software Foundation, Inc.
Copyright (C) 1991, 1996 Free Software Foundation, Inc.
Written by Ron Guilmette (rfg@netcom.com).
......@@ -251,29 +251,17 @@ do { \
#endif /* STACK_GROWS_DOWNWARD */
/* Add extra sections .init and .fini, in addition to .bss from att386.h. */
/* Add extra sections .rodata, .init and .fini. */
#undef EXTRA_SECTIONS
#define EXTRA_SECTIONS in_const, in_bss, in_init, in_fini
#define EXTRA_SECTIONS in_const, in_init, in_fini
#undef EXTRA_SECTION_FUNCTIONS
#define EXTRA_SECTION_FUNCTIONS \
CONST_SECTION_FUNCTION \
BSS_SECTION_FUNCTION \
INIT_SECTION_FUNCTION \
FINI_SECTION_FUNCTION
#define BSS_SECTION_FUNCTION \
void \
bss_section () \
{ \
if (in_section != in_bss) \
{ \
fprintf (asm_out_file, "\t%s\n", BSS_SECTION_ASM_OP); \
in_section = in_bss; \
} \
}
#define INIT_SECTION_FUNCTION \
void \
init_section () \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment