17 lines · plain
1! Tests that there no debug-info conflicts arise because of DI attached to nested2! OMP regions arguments.3 4! RUN: %flang -c -fopenmp -g -mmlir --enable-delayed-privatization=true \5! RUN: %s -o - 2>&1 | FileCheck %s6 7subroutine bar (b)8 integer :: a, b9!$omp parallel10 do a = 1, 1011 b = a12 end do13!$omp end parallel14end subroutine bar15 16! CHECK-NOT: conflicting debug info for argument17