[llvm] Introduction of typified section in ExtBinary format (PR #166553)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 29 13:03:24 PDT 2026


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp,h -- llvm/include/llvm/ProfileData/SampleProf.h llvm/include/llvm/ProfileData/SampleProfReader.h llvm/include/llvm/ProfileData/SampleProfWriter.h llvm/lib/ProfileData/SampleProfReader.cpp llvm/lib/ProfileData/SampleProfWriter.cpp --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/include/llvm/ProfileData/SampleProf.h b/llvm/include/llvm/ProfileData/SampleProf.h
index 069e91e40..08b718616 100644
--- a/llvm/include/llvm/ProfileData/SampleProf.h
+++ b/llvm/include/llvm/ProfileData/SampleProf.h
@@ -1520,12 +1520,12 @@ public:
     for (const auto &[Context, FuncSamples] : *this) {
       if (FuncSamples.hasNonLBRSamples()) {
         return true;
-      if (FuncSamples.hasNonLBRSamples())
-        return true;
+        if (FuncSamples.hasNonLBRSamples())
+          return true;
+      }
+      return false;
     }
-    return false;
-  }
-};
+  };
 
 using NameFunctionSamples = std::pair<hash_code, const FunctionSamples *>;
 

``````````

</details>


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


More information about the llvm-commits mailing list