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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dbxout.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 674724c05b3..2cfa62f6e77 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. 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 () { |