[flang-commits] [flang] Adding parsing and semantic check support for omp masked (PR #91432)
Sergio Afonso via flang-commits
flang-commits at lists.llvm.org
Fri May 10 03:14:05 PDT 2024
================
@@ -0,0 +1,65 @@
+
+! This test checks lowering of OpenMP masked Directive.
+
+// RUN: not flang-new -fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s
+
+subroutine test_masked()
+ integer :: c = 1
+ // CHECK: not yet implemented: Unhandled Directive masked
----------------
skatrak wrote:
Nit: Use "!" rather than "//" for Fortran comments.
```suggestion
! CHECK: not yet implemented: Unhandled Directive masked
```
https://github.com/llvm/llvm-project/pull/91432
More information about the flang-commits
mailing list