diff options
Diffstat (limited to 'flang/docs')
-rw-r--r-- | flang/docs/F202X.md | 1 | ||||
-rw-r--r-- | flang/docs/OpenMPSupport.md | 20 | ||||
-rw-r--r-- | flang/docs/ReleaseNotes.md | 2 |
3 files changed, 12 insertions, 11 deletions
diff --git a/flang/docs/F202X.md b/flang/docs/F202X.md index 67ea7fd..7504561 100644 --- a/flang/docs/F202X.md +++ b/flang/docs/F202X.md @@ -268,7 +268,6 @@ Addressing some issues and omissions in intrinsic modules: * LOGICAL8/16/32/64 and REAL16 * IEEE module facilities upgraded to match latest IEEE FP standard * C_F_STRPOINTER, F_C_STRING for NUL-terminated strings - * C_F_POINTER(LOWER=) #### Intrinsic Procedure Extensions diff --git a/flang/docs/OpenMPSupport.md b/flang/docs/OpenMPSupport.md index c9f19c3..81f5f9f 100644 --- a/flang/docs/OpenMPSupport.md +++ b/flang/docs/OpenMPSupport.md @@ -41,7 +41,7 @@ Note : No distinction is made between the support in Parser/Semantics, MLIR, Low | target construct | P | device clause not supported | | target update construct | P | device clause not supported | | declare target directive | P | | -| teams construct | P | reduction clause not supported | +| teams construct | Y | | | distribute construct | P | dist_schedule clause not supported | | distribute simd construct | P | dist_schedule and linear clauses are not supported | | distribute parallel loop construct | P | dist_schedule clause not supported | @@ -51,15 +51,15 @@ Note : No distinction is made between the support in Parser/Semantics, MLIR, Low | atomic construct extensions | Y | | | cancel construct | Y | | | cancellation point construct | Y | | -| parallel do simd construct | P | linear clause is not supported | -| target teams construct | P | device and reduction clauses are not supported | -| teams distribute construct | P | reduction and dist_schedule clauses not supported | -| teams distribute simd construct | P | reduction, dist_schedule and linear clauses are not supported | -| target teams distribute construct | P | device, reduction and dist_schedule clauses are not supported | -| teams distribute parallel loop construct | P | reduction and dist_schedule clauses are not supported | -| target teams distribute parallel loop construct | P | device, reduction and dist_schedule clauses are not supported | -| teams distribute parallel loop simd construct | P | reduction, dist_schedule, and linear clauses are not supported | -| target teams distribute parallel loop simd construct | P | device, reduction, dist_schedule and linear clauses are not supported | +| parallel do simd construct | P | linear clause not supported | +| target teams construct | P | device clause not supported | +| teams distribute construct | P | dist_schedule clause not supported | +| teams distribute simd construct | P | dist_schedule and linear clauses are not supported | +| target teams distribute construct | P | device and dist_schedule clauses are not supported | +| teams distribute parallel loop construct | P | dist_schedule clause not supported | +| target teams distribute parallel loop construct | P | device and dist_schedule clauses are not supported | +| teams distribute parallel loop simd construct | P | dist_schedule and linear clauses are not supported | +| target teams distribute parallel loop simd construct | P | device, dist_schedule and linear clauses are not supported | ## Extensions ### ATOMIC construct diff --git a/flang/docs/ReleaseNotes.md b/flang/docs/ReleaseNotes.md index f0c9562..99dc41c 100644 --- a/flang/docs/ReleaseNotes.md +++ b/flang/docs/ReleaseNotes.md @@ -24,6 +24,8 @@ page](https://llvm.org/releases/). ## Major New Features +* Support for LOWER= argument for C_F_POINTER. + ## Bug Fixes ## Non-comprehensive list of changes in this release |