diff options
author | Jan Beulich <jbeulich@suse.com> | 2022-03-29 08:19:14 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2022-03-29 08:19:14 +0200 |
commit | ddfc2f56d5782af79c696d7fef7c73bba11e8b09 (patch) | |
tree | 922916e58496a04403662630a97f0a3d5a26fd4f /bfd | |
parent | f3bbd5c389404eb4cc19d136886190d65fefde44 (diff) | |
download | gdb-ddfc2f56d5782af79c696d7fef7c73bba11e8b09.zip gdb-ddfc2f56d5782af79c696d7fef7c73bba11e8b09.tar.gz gdb-ddfc2f56d5782af79c696d7fef7c73bba11e8b09.tar.bz2 |
bfd/Dwarf2: gas doesn't mangle names
Include the language identifier emitted by gas in the set of ones where
no mangled names are expected. Even if there could be "hand-mangled"
names, gas doesn't emit DW_AT_linkage_name in the first place.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/dwarf2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 8cd0ce9..9aa4e95 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -1441,6 +1441,7 @@ non_mangled (int lang) case DW_LANG_PLI: case DW_LANG_UPC: case DW_LANG_C11: + case DW_LANG_Mips_Assembler: return true; } } |