aboutsummaryrefslogtreecommitdiff
path: root/contrib/gcc/dbxout.c
diff options
context:
space:
mode:
authorAlexander Kabaev <kan@FreeBSD.org>2002-09-17 04:14:38 +0000
committerAlexander Kabaev <kan@FreeBSD.org>2002-09-17 04:14:38 +0000
commitf40fb3f3fd5a3b00404676fc1fdcf83e5404b802 (patch)
treee5a8a4c5bdf2a440085cf1d893b768581f9381b4 /contrib/gcc/dbxout.c
parentb8bb8eab9990a5e9a4f609983f43225f4df8aef4 (diff)
downloadsrc-f40fb3f3fd5a3b00404676fc1fdcf83e5404b802.tar.gz
src-f40fb3f3fd5a3b00404676fc1fdcf83e5404b802.zip
Use the stock 3.2.1-prerelease file.
Approved by: obrien
Notes
Notes: svn path=/head/; revision=103453
Diffstat (limited to 'contrib/gcc/dbxout.c')
-rw-r--r--contrib/gcc/dbxout.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/gcc/dbxout.c b/contrib/gcc/dbxout.c
index b7907a561987..bc6105b05c87 100644
--- a/contrib/gcc/dbxout.c
+++ b/contrib/gcc/dbxout.c
@@ -398,11 +398,15 @@ dbxout_function_end ()
/* By convention, GCC will mark the end of a function with an N_FUN
symbol and an empty string. */
+#ifdef DBX_OUTPUT_NFUN
+ DBX_OUTPUT_NFUN (asmfile, lscope_label_name, current_function_decl);
+#else
fprintf (asmfile, "%s\"\",%d,0,0,", ASM_STABS_OP, N_FUN);
assemble_name (asmfile, lscope_label_name);
putc ('-', asmfile);
assemble_name (asmfile, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
fprintf (asmfile, "\n");
+#endif
}
#endif /* DBX_DEBUGGING_INFO */