Remove documentation for isSigned and isUnsigned methods of Type class.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 19 Dec 2006 23:12:09 +0000 (23:12 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 19 Dec 2006 23:12:09 +0000 (23:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32708 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.html

index 9c885814b14796aa16916273f5710e14871ca62c..1ee38603c7e47a2ce0392cec614e923880b0a071 100644 (file)
@@ -2495,17 +2495,7 @@ types.</p>
 <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>