summaryrefslogtreecommitdiff
path: root/docs/GarbageCollection.rst
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-12-12 17:02:44 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-12-12 17:02:44 +0000
commitb64f020a30427e90a05530f8b20f1bddd1ab9e0a (patch)
tree9c60ef5b98080ca4d953d31238d8946656bf69e6 /docs/GarbageCollection.rst
parent44581afacc7afc5e4e6cb8ffa14d337cf54a279f (diff)
downloadllvm-b64f020a30427e90a05530f8b20f1bddd1ab9e0a.tar.gz
llvm-b64f020a30427e90a05530f8b20f1bddd1ab9e0a.tar.bz2
llvm-b64f020a30427e90a05530f8b20f1bddd1ab9e0a.tar.xz
Documentation: convert WritingAnLLVMPass.html to reST.
Patch by Anthony Mykhailenko with small fixes by me. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GarbageCollection.rst')
-rw-r--r--docs/GarbageCollection.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/GarbageCollection.rst b/docs/GarbageCollection.rst
index f3b4bc3590..7765bd7d04 100644
--- a/docs/GarbageCollection.rst
+++ b/docs/GarbageCollection.rst
@@ -758,10 +758,10 @@ If ``CustomReadBarriers`` or ``CustomWriteBarriers`` are specified, then
``performCustomLowering`` **must** eliminate the corresponding barriers.
``performCustomLowering`` must comply with the same restrictions as
-`FunctionPass::runOnFunction <WritingAnLLVMPass.html#runOnFunction>`__
+:ref:`FunctionPass::runOnFunction <writing-an-llvm-pass-runOnFunction>`
Likewise, ``initializeCustomLowering`` has the same semantics as
-`Pass::doInitialization(Module&)
-<WritingAnLLVMPass.html#doInitialization_mod>`__
+:ref:`Pass::doInitialization(Module&)
+<writing-an-llvm-pass-doInitialization-mod>`
The following can be used as a template: