diff options
Diffstat (limited to 'lld/lib/ReaderWriter/PECOFF/LoadConfigPass.cpp')
-rw-r--r-- | lld/lib/ReaderWriter/PECOFF/LoadConfigPass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/lib/ReaderWriter/PECOFF/LoadConfigPass.cpp b/lld/lib/ReaderWriter/PECOFF/LoadConfigPass.cpp index bebe26bf825..a67416d82ae 100644 --- a/lld/lib/ReaderWriter/PECOFF/LoadConfigPass.cpp +++ b/lld/lib/ReaderWriter/PECOFF/LoadConfigPass.cpp @@ -49,14 +49,14 @@ LoadConfigAtom::LoadConfigAtom(VirtualFile &file, const DefinedAtom *sxdata, } // namespace loadcfg -std::error_code LoadConfigPass::perform(std::unique_ptr<SimpleFile> &file) { +std::error_code LoadConfigPass::perform(SimpleFile &file) { if (_ctx.noSEH()) return std::error_code(); // Find the first atom in .sxdata section. const DefinedAtom *sxdata = nullptr; int sectionSize = 0; - for (const DefinedAtom *atom : file->defined()) { + for (const DefinedAtom *atom : file.defined()) { if (atom->customSectionName() == ".sxdata") { if (!sxdata) sxdata = atom; @@ -68,7 +68,7 @@ std::error_code LoadConfigPass::perform(std::unique_ptr<SimpleFile> &file) { auto *loadcfg = new (_alloc) loadcfg::LoadConfigAtom(_file, sxdata, sectionSize / sizeof(uint32_t)); - file->addAtom(*loadcfg); + file.addAtom(*loadcfg); return std::error_code(); } |