[llvm-commits] CVS: llvm/docs/ExtendingLLVM.html
Reid Spencer
reid at x10sys.com
Sun Apr 1 00:45:22 PDT 2007
Changes in directory llvm/docs:
ExtendingLLVM.html updated: 1.27 -> 1.28
---
Log message:
Mention how to create overloaded intrinsics.
---
Diffs of the changes: (+5 -2)
ExtendingLLVM.html | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
Index: llvm/docs/ExtendingLLVM.html
diff -u llvm/docs/ExtendingLLVM.html:1.27 llvm/docs/ExtendingLLVM.html:1.28
--- llvm/docs/ExtendingLLVM.html:1.27 Wed Apr 12 12:42:39 2006
+++ llvm/docs/ExtendingLLVM.html Sun Apr 1 02:44:52 2007
@@ -87,7 +87,10 @@
<li><tt>llvm/include/llvm/Intrinsics*.td</tt>:
Add an entry for your intrinsic. Describe its memory access characteristics
- for optimization (this controls whether it will be DCE'd, CSE'd, etc).</li>
+ for optimization (this controls whether it will be DCE'd, CSE'd, etc). Note
+ that any intrinsic using the <tt>llvm_int_ty</tt> type for an argument will
+ be deemed by <tt>tblgen</tt> as overloaded and the corresponding suffix
+ will be required on the intrinsic's name.</li>
<li><tt>llvm/lib/Analysis/ConstantFolding.cpp</tt>: If it is possible to
constant fold your intrinsic, add support to it in the
@@ -382,7 +385,7 @@
<a href="http://llvm.org">The LLVM Compiler Infrastructure</a>
<br>
- Last modified: $Date: 2006/04/12 17:42:39 $
+ Last modified: $Date: 2007/04/01 07:44:52 $
</address>
</body>
More information about the llvm-commits
mailing list