forked from OSchip/llvm-project
[Docs] Fix sphinx build errors.
This commit is contained in:
parent
4b64e03461
commit
5762648c46
|
@ -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:
|
||||
"""""""
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue