mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 06:33:21 +00:00
[RuntimeDyld] Remove the brace initialization that was introduced in r226341.
Evidently MSVC doesn't like it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226349 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
451ade51e0
commit
944d563647
@ -207,7 +207,7 @@ RuntimeDyldImpl::loadObjectImpl(const object::ObjectFile &Obj) {
|
||||
SymbolInfo::Visibility Vis =
|
||||
(Flags & SymbolRef::SF_Exported) ?
|
||||
SymbolInfo::Default : SymbolInfo::Hidden;
|
||||
GlobalSymbolTable[Name] = {SectionID, SectOffset, Vis};
|
||||
GlobalSymbolTable[Name] = SymbolInfo(SectionID, SectOffset, Vis);
|
||||
}
|
||||
}
|
||||
DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
|
||||
@ -482,7 +482,7 @@ void RuntimeDyldImpl::emitCommonSymbols(const ObjectFile &Obj,
|
||||
SymbolInfo::Visibility Vis =
|
||||
(Flags & SymbolRef::SF_Exported) ?
|
||||
SymbolInfo::Default : SymbolInfo::Hidden;
|
||||
SymbolTable[Name.data()] = {SectionID, Offset, Vis};
|
||||
SymbolTable[Name.data()] = SymbolInfo(SectionID, Offset, Vis);
|
||||
Offset += Size;
|
||||
Addr += Size;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user