From 4e6802bea46fe992cfcb519e122160047d60e4ac Mon Sep 17 00:00:00 2001 From: law Date: Thu, 15 May 1997 14:39:56 +0000 Subject: [PATCH] * dbxout.c (dbxout_function_end): Don't subtract one from the end of function scoping stab. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14069 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/dbxout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 39d493244b7..80d2f83849f 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -361,7 +361,7 @@ dbxout_function_end () assemble_name (asmfile, lscope_label_name); fputc ('-', asmfile); assemble_name (asmfile, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0)); - fprintf (asmfile, "-1\n"); + fprintf (asmfile, "\n"); } /* At the beginning of compilation, start writing the symbol table. -- 2.11.4.GIT