[llvm-commits] CVS: llvm/docs/LangRef.html

Chris Lattner lattner at cs.uiuc.edu
Fri May 6 18:46:57 PDT 2005



Changes in directory llvm/docs:

LangRef.html updated: 1.101 -> 1.102
---
Log message:

fix bugs in my previous commit clarify the return type of the bit ops


---
Diffs of the changes:  (+15 -10)

 LangRef.html |   25 +++++++++++++++----------
 1 files changed, 15 insertions(+), 10 deletions(-)


Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.101 llvm/docs/LangRef.html:1.102
--- llvm/docs/LangRef.html:1.101	Fri May  6 18:08:23 2005
+++ llvm/docs/LangRef.html	Fri May  6 20:46:40 2005
@@ -471,12 +471,13 @@
   prototype of the function definition.
   </dd>
 
-  <dt><b>"<tt>cc <<it>n</it>></tt>" - Numbered convention</b>:</dt>
+  <dt><b>"<tt>cc <<em>n</em>></tt>" - Numbered convention</b>:</dt>
 
   <dd>Any calling convention may be specified by number, allowing
   target-specific calling conventions to be used.  Target specific calling
   conventions start at 64.
   </dd>
+</dl>
 
 <p>More calling conventions can be added/defined on an as-needed basis, to
 support pascal conventions or any other well-known target-independent
@@ -3195,7 +3196,8 @@
 <h5>Arguments:</h5>
 
 <p>
-The only argument is the value to be counted.  The argument may be of any integer type.
+The only argument is the value to be counted.  The argument may be of any
+integer type.  The return type must match the argument type.
 </p>
 
 <h5>Semantics:</h5>
@@ -3227,14 +3229,15 @@
 <h5>Arguments:</h5>
 
 <p>
-The only argument is the value to be counted.  The argument may be of any integer type.
+The only argument is the value to be counted.  The argument may be of any
+integer type.  The return type must match the argument type.
 </p>
 
 <h5>Semantics:</h5>
 
 <p>
-The '<tt>llvm.cttz</tt>' intrinsic counts the trailing zeros in a variable.  If the src == 0
-then the result is the size in bits of the type of src.
+The '<tt>llvm.cttz</tt>' intrinsic counts the trailing zeros in a variable.  If
+the src == 0 then the result is the size in bits of the type of src.
 </p>
 </div>
 
@@ -3254,20 +3257,22 @@
 <h5>Overview:</h5>
 
 <p>
-The '<tt>llvm.ctlz</tt>' intrinsic counts the number of leading zeros in a variable.
+The '<tt>llvm.ctlz</tt>' intrinsic counts the number of leading zeros in a
+variable.
 </p>
 
 <h5>Arguments:</h5>
 
 <p>
-The only argument is the value to be counted.  The argument may be of any integer type.
+The only argument is the value to be counted.  The argument may be of any
+integer type. The return type must match the argument type.
 </p>
 
 <h5>Semantics:</h5>
 
 <p>
-The '<tt>llvm.ctlz</tt>' intrinsic counts the leading zeros in a variable.  If the src == 0
-then the result is the size in bits of the type of src.
+The '<tt>llvm.ctlz</tt>' intrinsic counts the leading zeros in a variable.  If
+the src == 0 then the result is the size in bits of the type of src.
 </p>
 </div>
 
@@ -3297,7 +3302,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2005/05/06 23:08:23 $
+  Last modified: $Date: 2005/05/07 01:46:40 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list