From 5762648c46be9b84108958941994e10d0867bafd Mon Sep 17 00:00:00 2001 From: Florian Hahn Date: Mon, 23 Dec 2019 21:52:39 +0100 Subject: [PATCH] [Docs] Fix sphinx build errors. --- llvm/docs/LangRef.rst | 4 ++-- llvm/docs/ReleaseNotes.rst | 8 ++++---- llvm/docs/TableGen/LangIntro.rst | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index d227a95..fc8d207 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -14466,7 +14466,7 @@ vector must have * elements. '``llvm.matrix.columnwise.load.*``' Intrinsic -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Syntax: """"""" @@ -14492,7 +14492,7 @@ The and arguments must be constant integers. The returned vector must have * elements. %Stride must be >= . '``llvm.matrix.columnwise.store.*``' Intrinsic -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Syntax: """"""" diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst index 7140116..1b25a3f 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 d72b61f..7990d1f 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(someDag);`` + ``BaseClass b = !getop(someDag);`` - ``BaseClass b = !cast(!getop(someDag));`` + ``BaseClass b = !cast(!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. -- 2.7.4