We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 672ff5d commit 33dc42cCopy full SHA for 33dc42c
llvm/lib/LTO/LTO.cpp
@@ -2270,11 +2270,13 @@ class OutOfProcessThinBackend : public CGThinBackend {
2270
itostr(Task) + "." + UID + ".native.o");
2271
2272
Job &J = Jobs[Task - ThinLTOTaskOffset];
2273
- J = {Task,
2274
- ModulePath,
2275
- Saver.save(ObjFilePath.str()),
2276
- Saver.save(ObjFilePath.str() + ".thinlto.bc"),
2277
- {}};
+ J = {
+ Task,
+ ModulePath,
+ Saver.save(ObjFilePath.str()),
+ Saver.save(ObjFilePath.str() + ".thinlto.bc"),
2278
+ {} // Filled in by emitFiles below.
2279
+ };
2280
2281
assert(ModuleToDefinedGVSummaries.count(ModulePath));
2282
BackendThreadPool.async(
0 commit comments