diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-19 23:12:09 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-19 23:12:09 +0000 |
| commit | 85f3c060039aea35cf9855c64028561eb99384d7 (patch) | |
| tree | 0ae75da69e835ad8255ee76c3c2fe1c198cfedd8 /llvm/docs/ProgrammersManual.html | |
| parent | 874e55d5510ed659ada30f40af307fac2d9cee77 (diff) | |
| download | bcm5719-llvm-85f3c060039aea35cf9855c64028561eb99384d7.tar.gz bcm5719-llvm-85f3c060039aea35cf9855c64028561eb99384d7.zip | |
Remove documentation for isSigned and isUnsigned methods of Type class.
llvm-svn: 32708
Diffstat (limited to 'llvm/docs/ProgrammersManual.html')
| -rw-r--r-- | llvm/docs/ProgrammersManual.html | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 9c885814b14..1ee38603c7e 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/docs/ProgrammersManual.html @@ -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> |

