From: Benjamin Kramer Date: Wed, 30 Oct 2013 17:09:32 +0000 (+0000) Subject: fix RST reference in Writing an LLVM Pass X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2b672300667a5e931b744b9691f3e527153c85f2;p=oota-llvm.git fix RST reference in Writing an LLVM Pass Currently, instead of showing up as link, it is rendered as ...of FunctionPass . The... PR17733. Patch by Tay Ray Chuan! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193698 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/WritingAnLLVMPass.rst b/docs/WritingAnLLVMPass.rst index 1114fa0f211..f9cb4fe80fd 100644 --- a/docs/WritingAnLLVMPass.rst +++ b/docs/WritingAnLLVMPass.rst @@ -131,7 +131,7 @@ Next, we declare our pass itself: struct Hello : public FunctionPass { -This declares a "``Hello``" class that is a subclass of `FunctionPass +This declares a "``Hello``" class that is a subclass of :ref:`FunctionPass `. The different builtin pass subclasses are described in detail :ref:`later `, but for now, know that ``FunctionPass`` operates on a function at a time.