diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-08-05 14:59:23 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-08-05 14:59:23 -0700 |
commit | 6af601b387b15b16bdf7c737b68eaa7847b089dc (patch) | |
tree | 8f253350a6c2cdcb075bde9fceb955611f3a833b | |
parent | 519164a9ede028adf015270894441fb30433d969 (diff) | |
download | gcc-6af601b387b15b16bdf7c737b68eaa7847b089dc.zip gcc-6af601b387b15b16bdf7c737b68eaa7847b089dc.tar.gz gcc-6af601b387b15b16bdf7c737b68eaa7847b089dc.tar.bz2 |
(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
-rw-r--r-- | gcc/config/alpha/alpha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index b3befe1..ddc64d9 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; |