Skip to content

Commit c724215

Browse files
committed
Attempt to unbreak sphinx build bot by inserting a link.
llvm-svn: 367487
1 parent 005d705 commit c724215

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

llvm/docs/LoopTerminology.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.. _loop-terminology:
12
===========================================
23
LLVM Loop Terminology (and Canonical Forms)
34
===========================================

llvm/docs/WritingAnLLVMPass.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -538,9 +538,9 @@ compiled.
538538
The ``LoopPass`` class
539539
----------------------
540540

541-
All ``LoopPass`` execute on each loop in the function independent of all of the
542-
other loops in the function. ``LoopPass`` processes loops in loop nest order
543-
such that outer most loop is processed last.
541+
All ``LoopPass`` execute on each :ref:`loop <loop-terminology>` in the function
542+
independent of all of the other loops in the function. ``LoopPass`` processes
543+
loops in loop nest order such that outer most loop is processed last.
544544

545545
``LoopPass`` subclasses are allowed to update loop nest using ``LPPassManager``
546546
interface. Implementing a loop pass is usually straightforward.

0 commit comments

Comments
 (0)