aboutsummaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>1998-03-18 08:14:28 -0800
committerRichard Henderson <rth@gcc.gnu.org>1998-03-18 08:14:28 -0800
commit99d1a24c9b2e72fe14e20a783dc12bbd6a48d315 (patch)
tree639f9cccbad9f280b476c5cc3b81845311e5c92f /gcc/dbxout.c
parent5bac82c574601d8e2b3074ef475cb372fed20971 (diff)
downloadgcc-99d1a24c9b2e72fe14e20a783dc12bbd6a48d315.zip
gcc-99d1a24c9b2e72fe14e20a783dc12bbd6a48d315.tar.gz
gcc-99d1a24c9b2e72fe14e20a783dc12bbd6a48d315.tar.bz2
dbxout.c (dbxout_function_end): Fix last change.
* dbxout.c (dbxout_function_end): Fix last change. The correct predicate is ASM_OUTPUT_SECTION_NAME. From-SVN: r18675
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 1c760b2..0a15862 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -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));
-#ifndef NO_DBX_FUNCTION_END
+#if defined(ASM_OUTPUT_SECTION_NAME)
static void
dbxout_function_end ()
{