diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-09 22:32:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-09 22:32:16 +0000 |
commit | 06383e948f61be77544ca848e4392ff4482deba7 (patch) | |
tree | 75c94a2b5ef441b125898313e40e30770b3352c0 | |
parent | cad25379d30b80c7d1a61271aed18938b01617e2 (diff) | |
download | external_llvm-06383e948f61be77544ca848e4392ff4482deba7.zip external_llvm-06383e948f61be77544ca848e4392ff4482deba7.tar.gz external_llvm-06383e948f61be77544ca848e4392ff4482deba7.tar.bz2 |
Simpler still
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26671 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ExtendingLLVM.html | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/ExtendingLLVM.html b/docs/ExtendingLLVM.html index 0d90fc1..d2f358e 100644 --- a/docs/ExtendingLLVM.html +++ b/docs/ExtendingLLVM.html @@ -88,10 +88,6 @@ function and then be turned into an instruction if warranted.</p> <li><tt>llvm/include/llvm/Intrinsics.td</tt>: Add an entry for your intrinsic.</li> -<li><tt>llvm/lib/Analysis/BasicAliasAnalysis.cpp</tt>: If the new intrinsic does - not access memory or does not write to memory, add it to the relevant list - of functions.</li> - <li><tt>llvm/lib/Analysis/ConstantFolding.cpp</tt>: If it is possible to constant fold your intrinsic, add support to it in the <tt>canConstantFoldCallTo</tt> and <tt>ConstantFoldCall</tt> functions.</li> |