From 6af601b387b15b16bdf7c737b68eaa7847b089dc Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 5 Aug 1996 14:59:23 -0700 Subject: [PATCH] (alpha_output_filename): When emitting stabs, don't disable them if using GNU as. (alpha_output_filename): When emitting stabs, don't disable them if using GNU as. (alpha_output_lineno): Likewise, when not using GNU as. From-SVN: r12595 --- gcc/config/alpha/alpha.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index b3befe14333..ddc64d94c78 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -2020,7 +2020,7 @@ alpha_output_filename (stream, name) fprintf (stream, "\t#@stabs\n"); } - else if (!TARGET_GAS && write_symbols == DBX_DEBUG) + else if (write_symbols == DBX_DEBUG) { ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0); fprintf (stream, "%s ", ASM_STABS_OP); @@ -2052,7 +2052,7 @@ alpha_output_lineno (stream, line) FILE *stream; int line; { - if (TARGET_GAS && write_symbols == DBX_DEBUG) + if (write_symbols == DBX_DEBUG) { /* mips-tfile doesn't understand .stabd directives. */ ++sym_lineno; -- 2.30.2