[llvm] [DTLTO] [LLVM] Initial DTLTO cache implementation (PR #156433)
Katya Romanova via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 16 21:51:45 PDT 2025
================
@@ -2244,14 +2245,17 @@ class OutOfProcessThinBackend : public CGThinBackend {
SmallVector<StringRef, 0> CodegenOptions;
DenseSet<StringRef> CommonInputs;
-
+ std::atomic<uint64_t> CachedJobs{0};
----------------
romanova-ekaterina wrote:
changed to std::atomic<size_t> CachedJobs{0};
https://github.com/llvm/llvm-project/pull/156433
More information about the llvm-commits
mailing list