aboutsummaryrefslogtreecommitdiff
path: root/lld
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 /lld
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 'lld')
-rw-r--r--lld/MachO/Writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/MachO/Writer.cpp b/lld/MachO/Writer.cpp
index 65b598d..9b0a32c 100644
--- a/lld/MachO/Writer.cpp
+++ b/lld/MachO/Writer.cpp
@@ -66,7 +66,7 @@ public:
template <class LP> void run();
- ThreadPool threadPool;
+ DefaultThreadPool threadPool;
std::unique_ptr<FileOutputBuffer> &buffer;
uint64_t addr = 0;
uint64_t fileOff = 0;