aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-07-07 15:43:04 +0000
committerNick Clifton <nickc@redhat.com>2001-07-07 15:43:04 +0000
commitae341099a8760118fac6f592cccfb568adc7013b (patch)
treee8fd5c423a6b89ea60ec806734355e053c34612f /gas
parent58eeadbab5dd386e76fca8f0aabeae56d0e363d5 (diff)
downloadfsf-binutils-gdb-ae341099a8760118fac6f592cccfb568adc7013b.zip
fsf-binutils-gdb-ae341099a8760118fac6f592cccfb568adc7013b.tar.gz
fsf-binutils-gdb-ae341099a8760118fac6f592cccfb568adc7013b.tar.bz2
Only set debug_type to DEBUG_NONE if it is DEBUG_UNSPECIFIED.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/ecoff.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 7af747b..9944e1d 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-07 Nick Clifton <nickc@cambridge.redhat.com>
+
+ * ecoff.c (add_file): Only set debug_type to DEBUG_NONE if it is
+ DEBUG_UNSPECIFIED.
+
2001-07-06 John Healy <jhealy@redhat.com>
* cgen.c (gas_cgen_save_fixups): Modified to allow more than one
diff --git a/gas/ecoff.c b/gas/ecoff.c
index 57ddddc..cc94bf6 100644
--- a/gas/ecoff.c
+++ b/gas/ecoff.c
@@ -2220,7 +2220,7 @@ add_file (file_name, indx, fake)
if (! symbol_table_frozen && debug_type == DEBUG_UNSPECIFIED)
debug_type = DEBUG_ECOFF;
}
- else
+ else if (debug_type == DEBUG_UNSPECIFIED)
debug_type = DEBUG_NONE;
#ifndef NO_LISTING