From: Jim Wilson Date: Mon, 4 Apr 1994 21:39:19 +0000 (-0700) Subject: (sdbout_begin_block): Don't output block for function level scope unless MIPS_DEBUGGI... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f27ca8bff6812c869f464a404c495ea14ac5fdc;p=gcc.git (sdbout_begin_block): Don't output block for function level scope unless MIPS_DEBUGGING_INFO is defined. (sdbout_begin_block): Don't output block for function level scope unless MIPS_DEBUGGING_INFO is defined. (sdbout_end_block): Likewise. Add new parameter n for the block number. From-SVN: r6966 --- diff --git a/gcc/sdbout.c b/gcc/sdbout.c index e1a8bdc7e96..5dafb3f9077 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -1397,7 +1397,15 @@ sdbout_begin_block (file, line, n) { tree decl = current_function_decl; MAKE_LINE_SAFE (line); - PUT_SDB_BLOCK_START (line - sdb_begin_function_line); + + /* The SCO compiler does not emit a separate block for the function level + scope, so we avoid it here also. However, mips ECOFF compilers do emit + a separate block, so we retain it when MIPS_DEBUGGING_INFO is defined. */ +#ifndef MIPS_DEBUGGING_INFO + if (n != 1) +#endif + PUT_SDB_BLOCK_START (line - sdb_begin_function_line); + if (n == 1) { /* Include the outermost BLOCK's variables in block 1. */ @@ -1422,11 +1430,19 @@ sdbout_begin_block (file, line, n) /* Describe the end line-number of an internal block within a function. */ void -sdbout_end_block (file, line) +sdbout_end_block (file, line, n) FILE *file; int line; + int n; { MAKE_LINE_SAFE (line); + + /* The SCO compiler does not emit a separate block for the function level + scope, so we avoid it here also. However, mips ECOFF compilers do emit + a separate block, so we retain it when MIPS_DEBUGGING_INFO is defined. */ +#ifndef MIPS_DEBUGGING_INFO + if (n != 1) +#endif PUT_SDB_BLOCK_END (line - sdb_begin_function_line); }