[Mlir-commits] [mlir] [MLIR][AsmParser] Fix non-deterministic SSA value completion order under LLVM_REVERSE_ITERATION (PR #192150)
Jacques Pienaar
llvmlistbot at llvm.org
Wed Apr 22 06:17:59 PDT 2026
================
@@ -2555,10 +2555,15 @@ ParseResult OperationParser::parseOptionalBlockArgList(Block *owner) {
ParseResult OperationParser::codeCompleteSSAUse() {
for (IsolatedSSANameScope &scope : isolatedNameScopes) {
- for (auto &it : scope.values) {
- if (it.second.empty())
- continue;
- Value frontValue = it.second.front().value;
+ // Collect and sort SSA value names for deterministic completion ordering.
----------------
jpienaar wrote:
To check, so this is only used in LSP/slow down fine?
https://github.com/llvm/llvm-project/pull/192150
More information about the Mlir-commits
mailing list