]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
dbxout.c (dbxout_function_end): Fix last change.
authorRichard Henderson <rth@cygnus.com>
Wed, 18 Mar 1998 16:14:28 +0000 (08:14 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 18 Mar 1998 16:14:28 +0000 (08:14 -0800)
* dbxout.c (dbxout_function_end): Fix last change.  The correct
predicate is ASM_OUTPUT_SECTION_NAME.

From-SVN: r18675

gcc/ChangeLog
gcc/dbxout.c

index 674724c05b3aabb4db5b9c4b337850d164cf3233..2cfa62f6e77cb234a334350aaba068cd76adb44c 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 1c760b20e8eaa1bdb8b32e18cc46bbdf8ef4f31c..0a158622fc8633d2a09823dd46a0bd4adda31924 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 ()
 {