+22
−0
Loading
This fixes a crash in OpenMP lowering for cases like `!$omp parallel do with nested !$omp tile sizes(...)` . The loop-walk logic now correctly steps through intermediate OpenMP transformation wrappers to find the actual do construct, instead of assuming it is directly nested. Fixes : [https://github.com/llvm/llvm-project/issues/193256](https://github.com/llvm/llvm-project/issues/193256) sample reproducer : [https://godbolt.org/z/b7zecYEMT](https://godbolt.org/z/b7zecYEMT) Co-authored-by:Chandra Ghale <ghale@pe34genoa.hpc.amslabs.hpecorp.net>