(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
This commit is contained in:
Jim Wilson 1996-08-05 14:59:23 -07:00
parent 519164a9ed
commit 6af601b387
1 changed files with 2 additions and 2 deletions

View File

@ -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;