mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Modules are consumed when they are merged together by Linker.
Clear modules vector so that destructure does not try to delete these modules again. Patch by Chandler Carruth. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33017 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
43f344a266
commit
27376106d9
@ -353,6 +353,8 @@ LTO::optimizeModules(const std::string &OutputFilename,
|
||||
for (unsigned i = 1, e = modules.size(); i != e; ++i)
|
||||
if (theLinker.LinkModules(bigOne, modules[i], errMsg))
|
||||
return LTO_MODULE_MERGE_FAILURE;
|
||||
// all modules have been handed off to the linker.
|
||||
modules.clear();
|
||||
|
||||
sys::Path FinalOutputPath(FinalOutputFilename);
|
||||
FinalOutputPath.eraseSuffix();
|
||||
|
Loading…
Reference in New Issue
Block a user