From: Chris Lattner
Date: Wed, 11 May 2005 03:35:57 +0000 (+0000)
Subject: don't duplicate information, particularly when it's out of date!
X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=590cff389da241ab6cdca5f3fa53f019f17a0b4f;p=oota-llvm.git
don't duplicate information, particularly when it's out of date!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21852 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index bf7a45d6c4c..5e1ddaa1be1 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2328,12 +2328,8 @@ function. Additionally, because intrinsic functions are part of the LLVM
language, it is required that they all be documented here if any are added.
-
-Adding an intrinsic to LLVM is straight-forward if it is possible to express the
-concept in LLVM directly (ie, code generator support is not _required_). To do
-this, extend the default implementation of the IntrinsicLowering class to handle
-the intrinsic. Code generators use this class to lower intrinsics they do not
-understand to raw LLVM instructions that they do.
+
To learn how to add an intrinsics, please see the Extending LLVM Guide.