1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix warning: extra ‘;’ (NFC)

This commit is contained in:
Mehdi Amini 2020-03-18 14:21:14 +00:00
parent 5dd61e6f09
commit ce7aaf924e

View File

@ -205,7 +205,7 @@ void ThinLtoModuleIndex::updatePathRank(StringRef Path, unsigned Distance) {
Entry.Count += 1; Entry.Count += 1;
Entry.MinDist = std::min(Entry.MinDist, Distance); Entry.MinDist = std::min(Entry.MinDist, Distance);
assert(Entry.MinDist > 0 && "We want it as a divisor"); assert(Entry.MinDist > 0 && "We want it as a divisor");
}; }
// TODO: The size of a ThreadPool's task queue is not accessible. It would // 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 // be great to know in order to estimate how many modules we schedule. The