m68k.c (m68k_svr3_asm_out_constructor): Protect with ifdef CTOR_LIST_BEGIN instead of INIT_SECTION_ASM_OP.

* config/m68k/m68k.c (m68k_svr3_asm_out_constructor): Protect with
        ifdef CTOR_LIST_BEGIN instead of INIT_SECTION_ASM_OP.

From-SVN: r44770
This commit is contained in:
Richard Henderson 2001-08-10 09:56:53 -07:00 committed by Richard Henderson
parent 0dd9979555
commit d67c7dd855
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-08-10 Richard Henderson <rth@redhat.com>
* config/m68k/m68k.c (m68k_svr3_asm_out_constructor): Protect with
ifdef CTOR_LIST_BEGIN instead of INIT_SECTION_ASM_OP.
2001-08-10 Zack Weinberg <zackw@stanford.edu>
* calls.c, function.c: Always define PREFERRED_STACK_BOUNDARY

View File

@ -63,7 +63,7 @@ static void m68k_output_function_prologue PARAMS ((FILE *, HOST_WIDE_INT));
static void m68k_output_function_epilogue PARAMS ((FILE *, HOST_WIDE_INT));
static void m68k_coff_asm_named_section PARAMS ((const char *, unsigned int,
unsigned int));
#ifdef INIT_SECTION_ASM_OP
#ifdef CTOR_LIST_BEGIN
static void m68k_svr3_asm_out_constructor PARAMS ((rtx, int));
#endif
@ -4233,7 +4233,7 @@ m68k_coff_asm_named_section (name, flags, align)
fprintf (asm_out_file, "\t.section\t%s,\"%c\"\n", name, flagchar);
}
#ifdef INIT_SECTION_ASM_OP
#ifdef CTOR_LIST_BEGIN
static void
m68k_svr3_asm_out_constructor (symbol, priority)
rtx symbol;