aboutsummaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1996-09-23 12:34:01 -0700
committerJim Wilson <wilson@gcc.gnu.org>1996-09-23 12:34:01 -0700
commitabe0396253db0a68d0df545f50ba664275d139a3 (patch)
treecc1224ec915da1b122019c8fa76488a6f31ff00d /gcc/dbxout.c
parent80d92002a7d963ebf02313c281f9e65c7c92abfa (diff)
downloadgcc-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
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c3
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
}