diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-09-23 12:34:01 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-09-23 12:34:01 -0700 |
commit | abe0396253db0a68d0df545f50ba664275d139a3 (patch) | |
tree | cc1224ec915da1b122019c8fa76488a6f31ff00d | |
parent | 80d92002a7d963ebf02313c281f9e65c7c92abfa (diff) | |
download | gcc-abe0396253db0a68d0df545f50ba664275d139a3.zip gcc-abe0396253db0a68d0df545f50ba664275d139a3.tar.gz gcc-abe0396253db0a68d0df545f50ba664275d139a3.tar.bz2 |
(dbxout_function): Don't check DECL_SECTION_NAME before
calling dbxout_function_end.
From-SVN: r12779
-rw-r--r-- | gcc/dbxout.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 158160b..6711cfb 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -2597,8 +2597,7 @@ dbxout_function (decl) DBX_OUTPUT_FUNCTION_END (asmfile, decl); #endif #if defined(ASM_OUTPUT_SECTION_NAME) && !defined(NO_DBX_FUNCTION_END) - if (use_gnu_debug_info_extensions - && DECL_SECTION_NAME (decl) != NULL) + if (use_gnu_debug_info_extensions) dbxout_function_end (); #endif } |