docs: Add link to HowToSetUpLLVMStyleRTTI
llvm-svn: 168271
diff --git a/llvm/docs/CodingStandards.rst b/llvm/docs/CodingStandards.rst
index 9083530..c89a30d 100644
--- a/llvm/docs/CodingStandards.rst
+++ b/llvm/docs/CodingStandards.rst
@@ -409,7 +409,8 @@
That said, LLVM does make extensive use of a hand-rolled form of RTTI that use
templates like `isa<>, cast<>, and dyn_cast<> <ProgrammersManual.html#isa>`_.
-This form of RTTI is opt-in and can be added to any class. It is also
+This form of RTTI is opt-in and can be
+:doc:`added to any class <HowToSetUpLLVMStyleRTTI>`. It is also
substantially more efficient than ``dynamic_cast<>``.
.. _static constructor: