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

Reid Spencer reid at x10sys.com
Tue Dec 19 15:12:25 PST 2006



Changes in directory llvm/docs:

ProgrammersManual.html updated: 1.98 -> 1.99
---
Log message:

Remove documentation for isSigned and isUnsigned methods of Type class.


---
Diffs of the changes:  (+2 -12)

 ProgrammersManual.html |   14 ++------------
 1 files changed, 2 insertions(+), 12 deletions(-)


Index: llvm/docs/ProgrammersManual.html
diff -u llvm/docs/ProgrammersManual.html:1.98 llvm/docs/ProgrammersManual.html:1.99
--- llvm/docs/ProgrammersManual.html:1.98	Tue Dec 19 15:46:21 2006
+++ llvm/docs/ProgrammersManual.html	Tue Dec 19 17:12:09 2006
@@ -2495,17 +2495,7 @@
 <div class="doc_text">
 
 <ul>
-
-  <li><tt>bool isSigned() const</tt>: Returns whether an integral numeric type
-  is signed. This is true for SByteTy, ShortTy, IntTy, LongTy. Note that this is
-  not true for Float and Double. </li>
-
-  <li><tt>bool isUnsigned() const</tt>: Returns whether a numeric type is
-  unsigned. This is not quite the complement of isSigned... nonnumeric types
-  return false as they do with isSigned. This returns true for UByteTy,
-  UShortTy, UIntTy, and ULongTy. </li>
-
-  <li><tt>bool isInteger() const</tt>: Equivalent to isSigned() || isUnsigned().</li>
+  <li><tt>bool isInteger() const</tt>: True for any integer type.</li> 
 
   <li><tt>bool isIntegral() const</tt>: Returns true if this is an integral
   type, which is either Bool type or one of the Integer types.</li>
@@ -2579,7 +2569,7 @@
   <a href="mailto:dhurjati at cs.uiuc.edu">Dinakar Dhurjati</a> and
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/12/19 21:46:21 $
+  Last modified: $Date: 2006/12/19 23:12:09 $
 </address>
 
 </body>






More information about the llvm-commits mailing list