From 4d506da91c455bed75000edaafcf474ba043bf22 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Wed, 18 Mar 2020 14:21:14 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20`warning:=20extra=20=E2=80=98;=E2=80=99`?= =?UTF-8?q?=20(NFC)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llvm/examples/ThinLtoJIT/ThinLtoModuleIndex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/examples/ThinLtoJIT/ThinLtoModuleIndex.cpp b/llvm/examples/ThinLtoJIT/ThinLtoModuleIndex.cpp index 596c9356826d6..42ee43f1091ba 100644 --- a/llvm/examples/ThinLtoJIT/ThinLtoModuleIndex.cpp +++ b/llvm/examples/ThinLtoJIT/ThinLtoModuleIndex.cpp @@ -205,7 +205,7 @@ void ThinLtoModuleIndex::updatePathRank(StringRef Path, unsigned Distance) { Entry.Count += 1; Entry.MinDist = std::min(Entry.MinDist, Distance); assert(Entry.MinDist > 0 && "We want it as a divisor"); -}; +} // TODO: The size of a ThreadPool's task queue is not accessible. It would // be great to know in order to estimate how many modules we schedule. The