From af173031117aeab07c5b0a68402106c14c8b7fd4 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 17 Oct 1994 16:22:07 -0700 Subject: [PATCH] (function_prologue): Only emit line number when SDB_DEBUG. From-SVN: r8294 --- gcc/config/mips/mips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index d2fc7f47131..22a57d397a7 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -4719,7 +4719,7 @@ function_prologue (file, size) ASM_OUTPUT_SOURCE_FILENAME (file, DECL_SOURCE_FILE (current_function_decl)); - if (debug_info_level != DINFO_LEVEL_TERSE) + if (debug_info_level != DINFO_LEVEL_TERSE && write_symbols == SDB_DEBUG) ASM_OUTPUT_SOURCE_LINE (file, DECL_SOURCE_LINE (current_function_decl)); inside_function = 1; -- 2.30.2