We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d00b4 commit f3296e1Copy full SHA for f3296e1
llvm/lib/TextAPI/TextStub.cpp
@@ -663,10 +663,10 @@ template <> struct MappingTraits<const InterfaceFile *> {
663
}
664
for (auto &Symbol : Section.WeakDefSymbols)
665
File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
666
- SymbolFlags::WeakDefined);
+ SymbolFlags::WeakDefined | Flags);
667
for (auto &Symbol : Section.TLVSymbols)
668
669
- SymbolFlags::ThreadLocalValue);
+ SymbolFlags::ThreadLocalValue | Flags);
670
671
672
for (const auto &Section : Undefineds) {
0 commit comments