mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
[ThinLTO] Import type as decl only when non-null Identifier
As per post-commit review for r289993 (D27775), we can only safely import a type as a decl if it has an Identifier, as the Name alone is not enough to be unique across modules. llvm-svn: 290915
This commit is contained in:
parent
2a893b4054
commit
22248b4bd6
@ -749,7 +749,7 @@ Error MetadataLoader::MetadataLoaderImpl::parseOneMetadata(
|
||||
// handles the case where this is type ODRed with a definition needed
|
||||
// by the importing module, in which case the existing definition is
|
||||
// used.
|
||||
if (IsImporting && !ImportFullTypeDefinitions &&
|
||||
if (IsImporting && !ImportFullTypeDefinitions && Identifier &&
|
||||
(Tag == dwarf::DW_TAG_enumeration_type ||
|
||||
Tag == dwarf::DW_TAG_class_type ||
|
||||
Tag == dwarf::DW_TAG_structure_type ||
|
||||
|
Loading…
Reference in New Issue
Block a user