[flang-commits] [flang] [Flang][Doc] Correct section depth in IntrinsicTypes.md (PR #72271)
Kiran Chandramohan via flang-commits
flang-commits at lists.llvm.org
Tue Nov 14 07:30:53 PST 2023
https://github.com/kiranchandramohan created https://github.com/llvm/llvm-project/pull/72271
Fixes flang documentation CI build.
>From 7ad3c0c619571c6c17d9f47957d6c774585ef454 Mon Sep 17 00:00:00 2001
From: Kiran Chandramohan <kiran.chandramohan at arm.com>
Date: Tue, 14 Nov 2023 15:19:29 +0000
Subject: [PATCH] [Flang][Doc] Correct section depth in IntrinsicTypes.md
---
flang/docs/IntrinsicTypes.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/flang/docs/IntrinsicTypes.md b/flang/docs/IntrinsicTypes.md
index fa9d64b377cdbc3..0fee1c387024563 100644
--- a/flang/docs/IntrinsicTypes.md
+++ b/flang/docs/IntrinsicTypes.md
@@ -98,7 +98,7 @@ use LOGICAL values to interface with other languages.
### Representations of LOGICAL variables in other compilers
-##### Intel ifort / NVIDA nvfortran / PGI pgf90
+#### Intel ifort / NVIDA nvfortran / PGI pgf90
.TRUE. is represented as -1_kind
.FALSE. is represented as 0_kind
Any other values result in undefined behavior.
@@ -106,7 +106,7 @@ Any other values result in undefined behavior.
Values with a low-bit set are treated as .TRUE..
Values with a low-bit clear are treated as .FALSE..
-##### IBM XLF
+#### IBM XLF
.TRUE. is represented as 1_kind
.FALSE. is represented as 0_kind
More information about the flang-commits
mailing list