From ddfc2f56d5782af79c696d7fef7c73bba11e8b09 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Tue, 29 Mar 2022 08:19:14 +0200 Subject: [PATCH] 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. --- bfd/dwarf2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 8cd0ce9d425..9aa4e955a5e 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; } } -- 2.30.2