diff options
author | Nick Clifton <nickc@redhat.com> | 2001-07-07 15:43:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-07-07 15:43:04 +0000 |
commit | ae341099a8760118fac6f592cccfb568adc7013b (patch) | |
tree | e8fd5c423a6b89ea60ec806734355e053c34612f | |
parent | 58eeadbab5dd386e76fca8f0aabeae56d0e363d5 (diff) | |
download | gdb-ae341099a8760118fac6f592cccfb568adc7013b.zip gdb-ae341099a8760118fac6f592cccfb568adc7013b.tar.gz gdb-ae341099a8760118fac6f592cccfb568adc7013b.tar.bz2 |
Only set debug_type to DEBUG_NONE if it is DEBUG_UNSPECIFIED.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/ecoff.c | 2 |
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 |