[llvm] [Instrumentation] Avoid repeated hash lookups (NFC) (PR #129988)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 01:48:43 PST 2025


================
@@ -1563,14 +1564,15 @@ void PGOUseFunc::populateCoverage(IndexedInstrProfReader *PGOReader) {
     // successors, e.g., when a block calls a function that may call exit(). In
     // those cases, BFI could find its successor to be covered while BCI could
     // find its successor to be dead.
-    if (Coverage[&BB] == IsBlockDead(BB).value_or(false)) {
+    auto &Cov = Coverage[&BB];
----------------
nikic wrote:

```suggestion
    const bool &Cov = Coverage[&BB];
```

https://github.com/llvm/llvm-project/pull/129988


More information about the llvm-commits mailing list