[Mlir-commits] [mlir] [mlir] Fix UB in comparator lambdas in getRegisteredOperationsByDialect (PR #186428)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Mar 13 09:11:45 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 -- mlir/lib/IR/MLIRContext.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/mlir/lib/IR/MLIRContext.cpp b/mlir/lib/IR/MLIRContext.cpp
index caf877cc8..ae72afe1e 100644
--- a/mlir/lib/IR/MLIRContext.cpp
+++ b/mlir/lib/IR/MLIRContext.cpp
@@ -709,11 +709,11 @@ ArrayRef<RegisteredOperationName> MLIRContext::getRegisteredOperations() {
/// Return information for registered operations by dialect.
ArrayRef<RegisteredOperationName>
MLIRContext::getRegisteredOperationsByDialect(StringRef dialectName) {
- auto *lowerBound = llvm::lower_bound(
- impl->sortedRegisteredOperations, dialectName,
- [](const RegisteredOperationName &lhs, StringRef rhs) {
- return lhs.getDialect().getNamespace() < rhs;
- });
+ auto *lowerBound =
+ llvm::lower_bound(impl->sortedRegisteredOperations, dialectName,
+ [](const RegisteredOperationName &lhs, StringRef rhs) {
+ return lhs.getDialect().getNamespace() < rhs;
+ });
if (lowerBound == impl->sortedRegisteredOperations.end() ||
lowerBound->getDialect().getNamespace() != dialectName)
``````````
</details>
https://github.com/llvm/llvm-project/pull/186428
More information about the Mlir-commits
mailing list