[PATCH] D87906: [Flang][OpenACC] Fix for branching out issue in OpenACC parallel construct.

Valentin Clement via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 18 10:59:08 PDT 2020


clementval added a comment.

Pleas add test like the following one where we check the error:

  program test
    integer :: i, j
    label1: do i = 1, 10
      !$acc parallel loop
      do j = 1, 10
        if (j == 2) then
          exit label1
        end if
      end do
    end do label1
  end program test


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D87906/new/

https://reviews.llvm.org/D87906



More information about the llvm-commits mailing list