[llvm] 5762648 - [Docs] Fix sphinx build errors.

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 23 12:53:55 PST 2019


Author: Florian Hahn
Date: 2019-12-23T21:53:30+01:00
New Revision: 5762648c46be9b84108958941994e10d0867bafd

URL: https://github.com/llvm/llvm-project/commit/5762648c46be9b84108958941994e10d0867bafd
DIFF: https://github.com/llvm/llvm-project/commit/5762648c46be9b84108958941994e10d0867bafd.diff

LOG: [Docs] Fix sphinx build errors.

Added: 
    

Modified: 
    llvm/docs/LangRef.rst
    llvm/docs/ReleaseNotes.rst
    llvm/docs/TableGen/LangIntro.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index d227a9583263..fc8d207e0b3b 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -14466,7 +14466,7 @@ vector must have <M> * <N> elements.
 
 
 '``llvm.matrix.columnwise.load.*``' Intrinsic
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 Syntax:
 """""""
@@ -14492,7 +14492,7 @@ The <Rows> and <Cols> arguments must be constant integers. The returned vector
 must have <Rows> * <Cols> elements. %Stride must be >= <Rows>.
 
 '``llvm.matrix.columnwise.store.*``' Intrinsic
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 Syntax:
 """""""

diff  --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 714011612d2a..1b25a3fc128d 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -170,15 +170,15 @@ Changes to the OCaml bindings
 Changes to the C API
 --------------------
 * C DebugInfo API ``LLVMDIBuilderCreateTypedef`` is updated to include an extra
-argument ``AlignInBits``, to facilitate / propagate specified Alignment information
-present in a ``typedef`` to Debug information in LLVM IR.
+  argument ``AlignInBits``, to facilitate / propagate specified Alignment information
+  present in a ``typedef`` to Debug information in LLVM IR.
 
 
 Changes to the Go bindings
 --------------------------
 * Go DebugInfo API ``CreateTypedef`` is updated to include an extra argument ``AlignInBits``,
-to facilitate / propagate specified Alignment information present in a ``typedef``
-to Debug information in LLVM IR.
+  to facilitate / propagate specified Alignment information present in a ``typedef``
+  to Debug information in LLVM IR.
 
 
 Changes to the DAG infrastructure

diff  --git a/llvm/docs/TableGen/LangIntro.rst b/llvm/docs/TableGen/LangIntro.rst
index d72b61f6ab7d..7990d1f466b5 100644
--- a/llvm/docs/TableGen/LangIntro.rst
+++ b/llvm/docs/TableGen/LangIntro.rst
@@ -203,13 +203,13 @@ supported include:
 
     For example, to assign the result to a class-typed value, you
     could write either of these:
-      ``BaseClass b = !getop<BaseClass>(someDag);``
+    ``BaseClass b = !getop<BaseClass>(someDag);``
 
-      ``BaseClass b = !cast<BaseClass>(!getop(someDag));``
+    ``BaseClass b = !cast<BaseClass>(!getop(someDag));``
 
     But to build a new dag node reusing the operator from another, no
     cast is necessary:
-      ``dag d = !dag(!getop(someDag), args, names);``
+    ``dag d = !dag(!getop(someDag), args, names);``
 
 ``!listconcat(a, b, ...)``
     A list value that is the result of concatenating the 'a' and 'b' lists.


        


More information about the llvm-commits mailing list