From a9be2b1c8146fd6659a99952599830c6186fbe23 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Sat, 7 Jul 2001 15:44:08 +0000 Subject: Only set debug_type to DEBUG_NONE if it is DEBUG_UNSPECIFIED. --- gas/ChangeLog | 5 +++++ gas/ecoff.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 8d1251a..7984c54 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 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 -- cgit v1.1