OSDN Git Service

* dbxout.c (dbxout_function_end): Fix last change. The correct
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 18 Mar 1998 16:14:28 +0000 (16:14 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 18 Mar 1998 16:14:28 +0000 (16:14 +0000)
predicate is ASM_OUTPUT_SECTION_NAME.

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

gcc/ChangeLog
gcc/dbxout.c

index 674724c..2cfa62f 100644 (file)
@@ -1,3 +1,8 @@
+Wed Mar 18 16:14:23 1998  Richard Henderson  <rth@cygnus.com>
+
+       * dbxout.c (dbxout_function_end): Fix last change.  The correct
+       predicate is ASM_OUTPUT_SECTION_NAME.
+
 Wed Mar 18 12:43:20 1998  Jim Wilson  <wilson@cygnus.com>
 
        * sh.md (ashlsi_c-1): Delete 3rd argument to gen_ashlsi_c.
index 1c760b2..0a15862 100644 (file)
@@ -331,7 +331,7 @@ void dbxout_types ();
 void dbxout_args ();
 void dbxout_symbol ();
 
-#ifndef NO_DBX_FUNCTION_END
+#if defined(ASM_OUTPUT_SECTION_NAME)
 static void dbxout_function_end                PROTO((void));
 #endif
 static void dbxout_typedefs            PROTO((tree));
@@ -352,7 +352,7 @@ static void dbxout_finish_symbol    PROTO((tree));
 static void dbxout_block               PROTO((tree, int, tree));
 static void dbxout_really_begin_function PROTO((tree));
 \f
-#ifndef NO_DBX_FUNCTION_END
+#if defined(ASM_OUTPUT_SECTION_NAME)
 static void
 dbxout_function_end ()
 {