From 40828e35cfda64915289fbca488a6be0f444ec9f Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 13 Oct 1993 18:01:36 -0400 Subject: [PATCH] (ignore_line_number): No longer used. From-SVN: r5784 --- gcc/config/alpha/alpha.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index e03fbd5588c..1de197223d4 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -53,11 +53,6 @@ char *alpha_function_name; static int inside_function = FALSE; -/* Whether to suppress issuing .loc's because the user attempted - to change the filename within a function. */ - -static int ignore_line_number = FALSE; - /* Nonzero if the current function needs gp. */ int alpha_function_needs_gp; @@ -1485,7 +1480,6 @@ output_epilog (file, size) /* End the function. */ fprintf (file, "\t.end %s\n", alpha_function_name); inside_function = FALSE; - ignore_line_number = FALSE; /* Show that we know this function if it is called again. */ SYMBOL_REF_FLAG (XEXP (DECL_RTL (current_function_decl), 0)) = 1; @@ -1579,6 +1573,5 @@ alpha_output_lineno (stream, line) sym_lineno, ASM_STABN_OP, N_SLINE, line, sym_lineno); } else - fprintf (stream, "\n\t%s.loc\t%d %d\n", (ignore_line_number) ? "#" : "", - num_source_filenames, line); + fprintf (stream, "\n\t.loc\t%d %d\n", num_source_filenames, line); } -- 2.30.2