aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1993-10-13 18:01:36 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1993-10-13 18:01:36 -0400
commit40828e35cfda64915289fbca488a6be0f444ec9f (patch)
treee96a5c3e7df92f785cb459350e3004f358ed3184 /gcc
parent46ab92057f35a5d2c613f4ccbac79e65a9924f1d (diff)
downloadgcc-40828e35cfda64915289fbca488a6be0f444ec9f.zip
gcc-40828e35cfda64915289fbca488a6be0f444ec9f.tar.gz
gcc-40828e35cfda64915289fbca488a6be0f444ec9f.tar.bz2
(ignore_line_number): No longer used.
From-SVN: r5784
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/alpha/alpha.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
index e03fbd5..1de1972 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);
}