diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-22 19:35:31 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-22 19:35:31 -0400 |
commit | c77bb813b842a4cb611f88a8eb22ffe6daca8b9d (patch) | |
tree | ddc64de92bdd6ba5d1b157ce6fe3910a82413758 | |
parent | c07e26bda251b938d95b9d6090f0b71b960dfc04 (diff) | |
download | gcc-c77bb813b842a4cb611f88a8eb22ffe6daca8b9d.zip gcc-c77bb813b842a4cb611f88a8eb22ffe6daca8b9d.tar.gz gcc-c77bb813b842a4cb611f88a8eb22ffe6daca8b9d.tar.bz2 |
(INIT_SECTION_ASM_OP): Delete.
(HAVE_ATEXIT): Define.
From-SVN: r10507
-rw-r--r-- | gcc/config/sh/sh.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index 6c37a99..3b67014 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -1117,7 +1117,6 @@ extern int current_function_anonymous_args; #define DATA_SECTION_ASM_OP "\t.data" #define CTORS_SECTION_ASM_OP "\t.section\t.ctors\n" #define DTORS_SECTION_ASM_OP "\t.section\t.dtors\n" -#define INIT_SECTION_ASM_OP "\t.section\t.init\n" #define EXTRA_SECTIONS in_ctors, in_dtors #define EXTRA_SECTION_FUNCTIONS \ void \ @@ -1444,3 +1443,6 @@ extern int pragma_interrupt; compatibility problems. */ /* ??? Define ADJUST_COSTS? */ + +/* For the sake of libgcc2.c, indicate target supports atexit. */ +#define HAVE_ATEXIT |