[llvm] r367487 - Attempt to unbreak sphinx build bot by inserting a link.

Philip Reames via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 31 15:14:26 PDT 2019


Author: reames
Date: Wed Jul 31 15:14:26 2019
New Revision: 367487

URL: http://llvm.org/viewvc/llvm-project?rev=367487&view=rev
Log:
Attempt to unbreak sphinx build bot by inserting a link.


Modified:
    llvm/trunk/docs/LoopTerminology.rst
    llvm/trunk/docs/WritingAnLLVMPass.rst

Modified: llvm/trunk/docs/LoopTerminology.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LoopTerminology.rst?rev=367487&r1=367486&r2=367487&view=diff
==============================================================================
--- llvm/trunk/docs/LoopTerminology.rst (original)
+++ llvm/trunk/docs/LoopTerminology.rst Wed Jul 31 15:14:26 2019
@@ -1,3 +1,4 @@
+.. _loop-terminology:
 ===========================================
 LLVM Loop Terminology (and Canonical Forms)
 ===========================================

Modified: llvm/trunk/docs/WritingAnLLVMPass.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMPass.rst?rev=367487&r1=367486&r2=367487&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.rst (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.rst Wed Jul 31 15:14:26 2019
@@ -538,9 +538,9 @@ compiled.
 The ``LoopPass`` class
 ----------------------
 
-All ``LoopPass`` execute on each loop in the function independent of all of the
-other loops in the function.  ``LoopPass`` processes loops in loop nest order
-such that outer most loop is processed last.
+All ``LoopPass`` execute on each :ref:`loop <loop-terminology>` in the function
+independent of all of the other loops in the function.  ``LoopPass`` processes
+loops in loop nest order such that outer most loop is processed last.
 
 ``LoopPass`` subclasses are allowed to update loop nest using ``LPPassManager``
 interface.  Implementing a loop pass is usually straightforward.




More information about the llvm-commits mailing list