mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-08 18:37:11 +00:00
[TextAPI] Add missing flag input for <=tbdv3 formats
This commit is contained in:
parent
fcbdcb13ce
commit
dc787bc94c
@ -663,10 +663,10 @@ template <> struct MappingTraits<const InterfaceFile *> {
|
|||||||
}
|
}
|
||||||
for (auto &Symbol : Section.WeakDefSymbols)
|
for (auto &Symbol : Section.WeakDefSymbols)
|
||||||
File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
|
File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
|
||||||
SymbolFlags::WeakDefined);
|
SymbolFlags::WeakDefined | Flags);
|
||||||
for (auto &Symbol : Section.TLVSymbols)
|
for (auto &Symbol : Section.TLVSymbols)
|
||||||
File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
|
File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
|
||||||
SymbolFlags::ThreadLocalValue);
|
SymbolFlags::ThreadLocalValue | Flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const auto &Section : Undefineds) {
|
for (const auto &Section : Undefineds) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user