(alpha_output_filename): When emitting stabs, don't disable them if using GNU as.
authorJim Wilson <wilson@gcc.gnu.org>
Mon, 5 Aug 1996 21:59:23 +0000 (14:59 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Mon, 5 Aug 1996 21:59:23 +0000 (14:59 -0700)
(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

index b3befe1..ddc64d9 100644 (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;