diff options
author | kan <kan@FreeBSD.org> | 2002-09-17 04:14:38 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2002-09-17 04:14:38 +0000 |
commit | beeedde8dd051d056585828c041bc645bcef3e6b (patch) | |
tree | e5a8a4c5bdf2a440085cf1d893b768581f9381b4 /contrib/gcc/dbxout.c | |
parent | ff2e899178cf2e84acca7557d584cca4eaff3ed2 (diff) | |
download | FreeBSD-src-beeedde8dd051d056585828c041bc645bcef3e6b.zip FreeBSD-src-beeedde8dd051d056585828c041bc645bcef3e6b.tar.gz |
Use the stock 3.2.1-prerelease file.
Approved by: obrien
Diffstat (limited to 'contrib/gcc/dbxout.c')
-rw-r--r-- | contrib/gcc/dbxout.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/gcc/dbxout.c b/contrib/gcc/dbxout.c index b7907a5..bc6105b 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 */ |