[all-commits] [llvm/llvm-project] 502ea3: [mlir][IR] Fix inconsistency in block/op dominance
Matthias Springer via All-commits
all-commits at lists.llvm.org
Thu Nov 7 18:54:47 PST 2024
Branch: refs/heads/users/matthias-springer/properly_dominate
Home: https://github.com/llvm/llvm-project
Commit: 502ea367b45b5c1f7a3fdd4225342accbce6bbcd
https://github.com/llvm/llvm-project/commit/502ea367b45b5c1f7a3fdd4225342accbce6bbcd
Author: Matthias Springer <mspringer at nvidia.com>
Date: 2024-11-08 (Fri, 08 Nov 2024)
Changed paths:
M mlir/include/mlir/IR/Dominance.h
M mlir/lib/IR/Dominance.cpp
Log Message:
-----------
[mlir][IR] Fix inconsistency in block/op dominance
An operation is considered to properly dominate itself in a graph region. That's because there is no concept of "dominance" in a graph region. (`dominates` returns "true" for all pairs of ops in the same block.)
Previously, a block was *not* considered to dominate itself in a graph region. This commit fixes thise asymmetry between ops and blocks: both are now properly dominating themselves in a graph region.
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