[all-commits] [llvm/llvm-project] b48833: [MLIR] Make the verification order fixed in Dynami...
Twice via All-commits
all-commits at lists.llvm.org
Tue Feb 10 08:28:45 PST 2026
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: b48833bf6619c49ed15390db4c36b217bcbf8a02
https://github.com/llvm/llvm-project/commit/b48833bf6619c49ed15390db4c36b217bcbf8a02
Author: Twice <twice at apache.org>
Date: 2026-02-11 (Wed, 11 Feb 2026)
Changed paths:
M mlir/include/mlir/IR/ExtensibleDialect.h
Log Message:
-----------
[MLIR] Make the verification order fixed in DynamicOpTraitList (#180758)
Currently we use `DenseMap` in `DynamicOpTraitList` to store traits and
iterate over the `DenseMap`, and we found that the order is not fixed
and we also cannot control verification order.
In this PR we use `MapVector` to preserve the insertion order so that
the verification order over traits can be fixed and users can tune the
verification order.
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list