Commit a02303b8 by Doug Evans

dsp16xx.h (EXTRA_SECTIONS): Delete in_bss.

	* dsp16xx/dsp16xx.h (EXTRA_SECTIONS): Delete in_bss.
	(EXTRA_SECTION_FUNCTIONS): Delete bss_section.

From-SVN: r11369
parent 0002d65b
/* Definitions of target machine for GNU compiler. AT&T DSP1600.
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
Contributed by Michael Collison (collison@world.std.com).
This file is part of GNU CC.
......@@ -1609,9 +1609,9 @@ extern struct dsp16xx_frame_info current_frame_info;
specify it. */
#define DEFAULT_CHIP_NAME "1610"
/* A list of names for sections other than the standard two, which are
'in_text' and 'in_data'. */
#define EXTRA_SECTIONS in_bss, in_const
/* A list of names for sections other than the standard ones, which are
'in_text' and 'in_data' (and .bss if BSS_SECTION_ASM_OP is defined). */
#define EXTRA_SECTIONS in_const
#define EXTRA_SECTION_FUNCTIONS \
void \
......@@ -1622,16 +1622,7 @@ const_section () \
fprintf (asm_out_file, "%s\n", READONLY_SECTION_ASM_OP); \
in_section = in_const; \
} \
} \
void \
bss_section () \
{ \
if (in_section != in_bss) { \
fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP); \
in_section = in_bss; \
} \
}
/* THE OVERALL FRAMEWORK OF AN ASSEMBLER FILE */
......
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