[llvm] 019d7a3 - [docs][GlobalISel] Fix the warnings during docs-llvm-html build
Djordje Todorovic via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 25 01:54:03 PDT 2020
Author: Djordje Todorovic
Date: 2020-06-25T10:53:39+02:00
New Revision: 019d7a32febc1ac0a87a96911656235aaab1103b
URL: https://github.com/llvm/llvm-project/commit/019d7a32febc1ac0a87a96911656235aaab1103b
DIFF: https://github.com/llvm/llvm-project/commit/019d7a32febc1ac0a87a96911656235aaab1103b.diff
LOG: [docs][GlobalISel] Fix the warnings during docs-llvm-html build
Before the fix the build of docs-llvm-html would fail.
The rG8bc03d216824 introduced a reference to an undefined label,
so we have warning as:
llvm-project/llvm/docs/GlobalISel/GenericOpcode.rst:295:\
undefined label: i_intr_llvm_ptrmask (if the link has no\
caption the label must precede a section header)
Added:
Modified:
llvm/docs/GlobalISel/GenericOpcode.rst
Removed:
################################################################################
diff --git a/llvm/docs/GlobalISel/GenericOpcode.rst b/llvm/docs/GlobalISel/GenericOpcode.rst
index 33611ea31a35..5c0be7ef70b5 100644
--- a/llvm/docs/GlobalISel/GenericOpcode.rst
+++ b/llvm/docs/GlobalISel/GenericOpcode.rst
@@ -294,7 +294,7 @@ G_PTRMASK
Zero out an arbitrary mask of bits of a pointer. The mask type must be
an integer, and the number of vector elements must match for all
-operands. This corresponds to :ref:`i_intr_llvm_ptrmask`.
+operands. This corresponds to `i_intr_llvm_ptrmask`.
.. code-block:: none
More information about the llvm-commits
mailing list