diff options
author | Doug Evans <dje@gnu.org> | 1996-02-29 03:09:45 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-02-29 03:09:45 +0000 |
commit | bee62d232903d62a6fc02387fc830d183d7a4b9b (patch) | |
tree | 32db211e65102b976862c5bf38a3a138d1e7590f | |
parent | d9d87b5a22017aca3a61d50c15767254d12a4977 (diff) | |
download | gcc-bee62d232903d62a6fc02387fc830d183d7a4b9b.zip gcc-bee62d232903d62a6fc02387fc830d183d7a4b9b.tar.gz gcc-bee62d232903d62a6fc02387fc830d183d7a4b9b.tar.bz2 |
svr3gas.h (EXTRA_SECTIONS): Delete in_bss.
* i386/svr3gas.h (EXTRA_SECTIONS): Delete in_bss.
(EXTRA_SECTION_FUNCTIONS): Delete BSS_SECTION_FUNCTION.
(BSS_SECTION_FUNCTION): Delete.
From-SVN: r11375
-rw-r--r-- | gcc/config/i386/svr3gas.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/gcc/config/i386/svr3gas.h b/gcc/config/i386/svr3gas.h index 401c766..a288b84 100644 --- a/gcc/config/i386/svr3gas.h +++ b/gcc/config/i386/svr3gas.h @@ -1,5 +1,5 @@ /* Definitions for Intel 386 running system V, using gas. - Copyright (C) 1992 Free Software Foundation, Inc. + Copyright (C) 1992, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -139,29 +139,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 () \ |