diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-18 16:14:28 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-18 16:14:28 +0000 |
commit | ffe3b811bf2d91439b31dd20e007a191f252635d (patch) | |
tree | 639f9cccbad9f280b476c5cc3b81845311e5c92f /gcc/dbxout.c | |
parent | 4577e3d6a590bc5c1e7f6c4c09d960de1f7d5089 (diff) | |
download | gcc-ffe3b811bf2d91439b31dd20e007a191f252635d.tar.gz |
* dbxout.c (dbxout_function_end): Fix last change. The correct
predicate is ASM_OUTPUT_SECTION_NAME.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18675 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 1c760b20e8e..0a158622fc8 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 () { |