summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-19 23:12:09 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-19 23:12:09 +0000
commit89e211e628db2424df72436d04d27ce1d24d6ad7 (patch)
treed696dc9f3041dba1bb9cb361e9957a1d6f2b4342 /docs
parent2edc43f02d7ff75b3ed6091522c2571f8c3bbc27 (diff)
downloadllvm-89e211e628db2424df72436d04d27ce1d24d6ad7.tar.gz
llvm-89e211e628db2424df72436d04d27ce1d24d6ad7.tar.bz2
llvm-89e211e628db2424df72436d04d27ce1d24d6ad7.tar.xz
Remove documentation for isSigned and isUnsigned methods of Type class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ProgrammersManual.html12
1 files changed, 1 insertions, 11 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 9c885814b1..1ee38603c7 100644
--- a/docs/ProgrammersManual.html
+++ b/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>