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 /gas/ecoff.c | |
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.
Diffstat (limited to 'gas/ecoff.c')
-rw-r--r-- | gas/ecoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |