summaryrefslogtreecommitdiffstats
path: root/flang/docs/Intrinsics.md
diff options
context:
space:
mode:
Diffstat (limited to 'flang/docs/Intrinsics.md')
-rw-r--r--flang/docs/Intrinsics.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/flang/docs/Intrinsics.md b/flang/docs/Intrinsics.md
index ccb93e104dab..848619cb65d9 100644
--- a/flang/docs/Intrinsics.md
+++ b/flang/docs/Intrinsics.md
@@ -657,6 +657,14 @@ CALL CO_REDUCE
CALL CO_SUM
```
+### Inquiry Functions
+ACCESS (GNU extension) is not supported on Windows. Otherwise:
+```
+CHARACTER(LEN=*) :: path = 'path/to/file'
+IF (ACCESS(path, 'rwx')) &
+ ...
+```
+
## Non-standard intrinsics
### PGI
```