OSDN Git Service

(alpha_output_filename): When emitting stabs, don't
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Aug 1996 21:59:23 +0000 (21:59 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Aug 1996 21:59:23 +0000 (21:59 +0000)
disable them if using GNU as.
(alpha_output_lineno): Likewise, when not using GNU as.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12595 138bc75d-0d04-0410-961f-82ee72b054a4

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;