[Mlir-commits] [mlir] [MLIR] Introduce support for early exits (PR #166688)
Mehdi Amini
llvmlistbot at llvm.org
Mon Apr 6 03:25:37 PDT 2026
================
----------------
joker-eph wrote:
Most situation requires to handle explicitly the control-flow when you touch the structure. For example try to loop interchange:
```
for ( ) @outer {
for ( ) @inner {
if (something) break @outer;
}
}
```
Having a symbol here makes its so that you can **syntactically** just do it without caring about the break, but it would be just wrong to do so.
https://github.com/llvm/llvm-project/pull/166688
More information about the Mlir-commits
mailing list