aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1996-02-29 03:02:01 +0000
committerDoug Evans <dje@gnu.org>1996-02-29 03:02:01 +0000
commita02303b8511e5ce81601499bca298b1ccc4549e5 (patch)
tree2e278fa927569e0e42851b4c5dbc6182afaa2bbd
parent0002d65bda6570056e2fff7c83305526ea7e73af (diff)
downloadgcc-a02303b8511e5ce81601499bca298b1ccc4549e5.zip
gcc-a02303b8511e5ce81601499bca298b1ccc4549e5.tar.gz
gcc-a02303b8511e5ce81601499bca298b1ccc4549e5.tar.bz2
dsp16xx.h (EXTRA_SECTIONS): Delete in_bss.
* dsp16xx/dsp16xx.h (EXTRA_SECTIONS): Delete in_bss. (EXTRA_SECTION_FUNCTIONS): Delete bss_section. From-SVN: r11369
-rw-r--r--gcc/config/dsp16xx/dsp16xx.h17
1 files changed, 4 insertions, 13 deletions
diff --git a/gcc/config/dsp16xx/dsp16xx.h b/gcc/config/dsp16xx/dsp16xx.h
index 6e32594..25215c8 100644
--- a/gcc/config/dsp16xx/dsp16xx.h
+++ b/gcc/config/dsp16xx/dsp16xx.h
@@ -1,5 +1,5 @@
/* 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 */