OSDN Git Service

* config/m68k/m68k.c (m68k_svr3_asm_out_constructor): Protect with
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 10 Aug 2001 16:56:53 +0000 (16:56 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 10 Aug 2001 16:56:53 +0000 (16:56 +0000)
        ifdef CTOR_LIST_BEGIN instead of INIT_SECTION_ASM_OP.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44770 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/m68k/m68k.c

index af57e86..00b22c5 100644 (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
index b03c29e..57ddad2 100644 (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
 \f
@@ -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;