mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-01 03:33:42 +00:00
OrcJIT: Avoid non-static initializers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227041 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2edd9a9db8
commit
4df70bbd17
@ -101,12 +101,12 @@ private:
|
||||
tryToLoadFromObjectCache(const Module &M) {
|
||||
std::unique_ptr<MemoryBuffer> ObjBuffer = ObjCache->getObject(&M);
|
||||
if (!ObjBuffer)
|
||||
return {nullptr, nullptr};
|
||||
return object::OwningBinary<object::ObjectFile>();
|
||||
|
||||
ErrorOr<std::unique_ptr<object::ObjectFile>> Obj =
|
||||
object::ObjectFile::createObjectFile(ObjBuffer->getMemBufferRef());
|
||||
if (!Obj)
|
||||
return {nullptr, nullptr};
|
||||
return object::OwningBinary<object::ObjectFile>();
|
||||
|
||||
return {std::move(*Obj), std::move(ObjBuffer)};
|
||||
}
|
||||
|
@ -258,7 +258,7 @@ private:
|
||||
const ObjListT &Objects,
|
||||
const LoadedObjInfoListT &Infos) const {
|
||||
M.UnfinalizedSections[H] = std::move(M.SectionsAllocatedSinceLastLoad);
|
||||
M.SectionsAllocatedSinceLastLoad = SectionAddrSet{};
|
||||
M.SectionsAllocatedSinceLastLoad = SectionAddrSet();
|
||||
assert(Objects.size() == Infos.size() &&
|
||||
"Incorrect number of Infos for Objects.");
|
||||
for (unsigned I = 0; I < Objects.size(); ++I)
|
||||
|
Loading…
x
Reference in New Issue
Block a user