From: Nick Clifton Date: Sat, 7 Jul 2001 15:44:08 +0000 (+0000) Subject: Only set debug_type to DEBUG_NONE if it is DEBUG_UNSPECIFIED. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a9be2b1c8146fd6659a99952599830c6186fbe23;p=thirdparty%2Fbinutils-gdb.git Only set debug_type to DEBUG_NONE if it is DEBUG_UNSPECIFIED. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 8d1251a5a88..7984c5457ad 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-07-07 Nick Clifton + + * ecoff.c (add_file): Only set debug_type to DEBUG_NONE if it is + DEBUG_UNSPECIFIED. + 2001-06-27 Nick Clifton * config/tc-arm.c (do_ldst): Use MVN to build simple inverted diff --git a/gas/ecoff.c b/gas/ecoff.c index 57ddddc93bf..cc94bf69ac3 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