diff options
Diffstat (limited to 'gas/listing.c')
-rw-r--r-- | gas/listing.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gas/listing.c b/gas/listing.c index 929ec98..bc6af71 100644 --- a/gas/listing.c +++ b/gas/listing.c @@ -1075,17 +1075,22 @@ print_source (file_info_type * current_file, static int debugging_pseudo (list_info_type *list, const char *line) { +#ifdef OBJ_ELF static int in_debug; int was_debug; +#endif if (list->debugging) { +#ifdef OBJ_ELF in_debug = 1; +#endif return 1; } - +#ifdef OBJ_ELF was_debug = in_debug; in_debug = 0; +#endif while (ISSPACE (*line)) line++; |