diff options
author | Richard Biener <rguenther@suse.de> | 2017-10-30 12:48:53 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2017-10-30 12:48:53 +0000 |
commit | bfe6f07666cefb587faaeb988747fffdd5e96524 (patch) | |
tree | 7ab0fd6ebaef0b1c0e09b38d3fbfd99eff6b42bd /libiberty/simple-object-elf.c | |
parent | 51a9f20ca91d656734198405f8955e33adb54189 (diff) | |
download | gcc-bfe6f07666cefb587faaeb988747fffdd5e96524.zip gcc-bfe6f07666cefb587faaeb988747fffdd5e96524.tar.gz gcc-bfe6f07666cefb587faaeb988747fffdd5e96524.tar.bz2 |
re PR lto/82757 (r251560 causes: plugin needed to handle lto object)
2017-10-30 Richard Biener <rguenther@suse.de>
PR lto/82757
* simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
Strip two leading _s from the __gnu_lto_* symbols.
From-SVN: r254219
Diffstat (limited to 'libiberty/simple-object-elf.c')
-rw-r--r-- | libiberty/simple-object-elf.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libiberty/simple-object-elf.c b/libiberty/simple-object-elf.c index 14f7105..27431db 100644 --- a/libiberty/simple-object-elf.c +++ b/libiberty/simple-object-elf.c @@ -1384,7 +1384,12 @@ simple_object_elf_copy_lto_debug_sections (simple_object_read *sobj, && p[1] == '_' && strncmp (p + (p[2] == '_'), "__gnu_lto_", 10) == 0) - other = STV_HIDDEN; + { + other = STV_HIDDEN; + ELF_SET_FIELD (type_functions, ei_class, Sym, + ent, st_name, Elf_Word, + st_name + 2); + } } } *st_other = other; |