diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-20 07:53:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-20 07:53:22 +0000 |
commit | 81519d9b6434ad42e41e0aecec34b76ddb9d8f2b (patch) | |
tree | 7bac752af596a7b3d453febfed7f00854795ebd0 /docs/ExtendingLLVM.html | |
parent | 2fce098f948b536dc51fd5b538a4f2d925ad4be7 (diff) |
Update path
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14268 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ExtendingLLVM.html')
-rw-r--r-- | docs/ExtendingLLVM.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ExtendingLLVM.html b/docs/ExtendingLLVM.html index 3d5ccc0d13..d86b1a47dc 100644 --- a/docs/ExtendingLLVM.html +++ b/docs/ExtendingLLVM.html @@ -90,7 +90,7 @@ function and then be turned into an instruction if warranted.</p> <li><tt>llvm/include/llvm/Intrinsics.h</tt>: add an enum in the <tt>llvm::Intrinsic</tt> namespace</li> -<li><tt>llvm/lib/VMCore/IntrinsicLowering.cpp</tt>: +<li><tt>llvm/lib/CodeGen/IntrinsicLowering.cpp</tt>: implement the lowering for this intrinsic</li> <li><tt>llvm/lib/VMCore/Verifier.cpp</tt>: @@ -101,7 +101,7 @@ function and then be turned into an instruction if warranted.</p> that you added.</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 + not access memory or does not write to memory, add it to the relevant list of functions.</li> <li><tt>llvm/lib/Transforms/Utils/Local.cpp</tt>: If it is possible to constant |