[flang-commits] [flang] d32df98 - [Flang][Docs] Add or exclude documents to the toc (#72302)
via flang-commits
flang-commits at lists.llvm.org
Tue Nov 14 14:42:30 PST 2023
Author: Kiran Chandramohan
Date: 2023-11-14T22:42:26Z
New Revision: d32df989546d30225184366013b8eedefe2ec6b0
URL: https://github.com/llvm/llvm-project/commit/d32df989546d30225184366013b8eedefe2ec6b0
DIFF: https://github.com/llvm/llvm-project/commit/d32df989546d30225184366013b8eedefe2ec6b0.diff
LOG: [Flang][Docs] Add or exclude documents to the toc (#72302)
This fixes all the warnings of the following type in the CI
(https://lab.llvm.org/buildbot/#/builders/89/builds/50248/steps/5/logs/stdio)
-> WARNING: document isn't included in any toctree.
Added:
Modified:
flang/docs/conf.py
flang/docs/index.md
Removed:
################################################################################
diff --git a/flang/docs/conf.py b/flang/docs/conf.py
index 9b4523737374705..6f4e2dd4ec87d51 100644
--- a/flang/docs/conf.py
+++ b/flang/docs/conf.py
@@ -68,7 +68,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
-exclude_patterns = ["_build", "analyzer"]
+exclude_patterns = ["_build", "analyzer", "FIR/*"]
# The reST default role (used for this markup: `text`) to use for all documents.
# default_role = None
diff --git a/flang/docs/index.md b/flang/docs/index.md
index 0e4b47995e271f4..5c9b8895298c2f3 100644
--- a/flang/docs/index.md
+++ b/flang/docs/index.md
@@ -24,6 +24,7 @@ on how to get in touch with us and to learn more about the current status.
C++17
C++style
+ DesignGuideline
FortranForCProgrammers
GettingInvolved
GettingStarted
@@ -37,35 +38,48 @@ on how to get in touch with us and to learn more about the current status.
.. toctree::
:titlesonly:
+ Aliasing
+ AliasingAnalysisFIR
ArrayComposition
BijectiveInternalNameUniquing
Calls
Character
+ ComplexOperations
ControlFlowGraph
Directives
DoConcurrent
Extensions
+ F202X
+ FIRArrayOperations
FIRLangRef
FlangCommandLineReference
FlangDriver
+ FortranFeatureHistory
FortranIR
FortranLLVMTestSuite
+ HighLevelFIR
IORuntimeInternals
+ InternalProcedureTrampolines
Intrinsics
IntrinsicTypes
LabelResolution
ModFiles
+ OpenACC
OpenMP-4.5-grammar.md
OpenMP-semantics
OptionComparison
Overview
+ ParameterizedDerivedTypes
ParserCombinators
Parsing
+ PolymorphicEntities
Preprocessing
+ ProcedurePointer
RuntimeDescriptor
RuntimeTypeInfo
Semantics
f2018-grammar.md
+ fstack-arrays
```
# Indices and tables
More information about the flang-commits
mailing list