aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/LTO/LTO.cpp
diff options
context:
space:
mode:
authorMehdi Amini <joker.eph@gmail.com>2024-03-05 18:00:46 -0800
committerGitHub <noreply@github.com>2024-03-05 18:00:46 -0800
commit716042a63f26cd020eb72960f72fa97b9a197382 (patch)
treee6ab10210bd7a8d593a7aea71d1958467153b397 /llvm/lib/LTO/LTO.cpp
parent31c304ba7ba8bb5c236072df55640154ea49b588 (diff)
downloadllvm-716042a63f26cd020eb72960f72fa97b9a197382.zip
llvm-716042a63f26cd020eb72960f72fa97b9a197382.tar.gz
llvm-716042a63f26cd020eb72960f72fa97b9a197382.tar.bz2
Rename llvm::ThreadPool -> llvm::DefaultThreadPool (NFC) (#83702)
The base class llvm::ThreadPoolInterface will be renamed llvm::ThreadPool in a subsequent commit. This is a breaking change: clients who use to create a ThreadPool must now create a DefaultThreadPool instead.
Diffstat (limited to 'llvm/lib/LTO/LTO.cpp')
-rw-r--r--llvm/lib/LTO/LTO.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/LTO/LTO.cpp b/llvm/lib/LTO/LTO.cpp
index 34a49c8..9c93ec7 100644
--- a/llvm/lib/LTO/LTO.cpp
+++ b/llvm/lib/LTO/LTO.cpp
@@ -1409,7 +1409,7 @@ public:
namespace {
class InProcessThinBackend : public ThinBackendProc {
- ThreadPool BackendThreadPool;
+ DefaultThreadPool BackendThreadPool;
AddStreamFn AddStream;
FileCache Cache;
std::set<GlobalValue::GUID> CfiFunctionDefs;