diff options
author | Alan Modra <amodra@gmail.com> | 2011-06-13 00:59:43 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-06-13 00:59:43 +0000 |
commit | 80cc85a903fe8f1207cf52a909b2d88376b035e7 (patch) | |
tree | aa38a1763243434d96601c2b13893d40dd7e4610 /ld/emultempl | |
parent | 7686d77de353217f4a1d50e07ccb5aecd2579e67 (diff) | |
download | gdb-80cc85a903fe8f1207cf52a909b2d88376b035e7.zip gdb-80cc85a903fe8f1207cf52a909b2d88376b035e7.tar.gz gdb-80cc85a903fe8f1207cf52a909b2d88376b035e7.tar.bz2 |
* ldlang.c (sort_def_symbol, lang_one_common): Don't handle
warning symbols here.
* emultempl/pe.em (pr_sym): Remove redundant test.
* emultempl/pep.em (pr_sym): Likewise.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/pe.em | 3 | ||||
-rw-r--r-- | ld/emultempl/pep.em | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em index 6369606..5737fc0 100644 --- a/ld/emultempl/pe.em +++ b/ld/emultempl/pe.em @@ -1197,8 +1197,7 @@ This should work unless it involves constant data structures referencing symbols static bfd_boolean pr_sym (struct bfd_hash_entry *h, void *inf ATTRIBUTE_UNUSED) { - if (pe_dll_extra_pe_debug) - printf ("+%s\n", h->string); + printf ("+%s\n", h->string); return TRUE; } diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em index 0c1dfb9..e02ddcf 100644 --- a/ld/emultempl/pep.em +++ b/ld/emultempl/pep.em @@ -1130,8 +1130,7 @@ pep_find_data_imports (void) static bfd_boolean pr_sym (struct bfd_hash_entry *h, void *inf ATTRIBUTE_UNUSED) { - if (pep_dll_extra_pe_debug) - printf ("+%s\n", h->string); + printf ("+%s\n", h->string); return TRUE; } |