From 89e211e628db2424df72436d04d27ce1d24d6ad7 Mon Sep 17 00:00:00 2001
From: Reid Spencer
Date: Tue, 19 Dec 2006 23:12:09 +0000
Subject: [PATCH] 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
---
docs/ProgrammersManual.html | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 9c885814b14..1ee38603c7e 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -2495,17 +2495,7 @@ types.
-
- - bool isSigned() const: 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.
-
- - bool isUnsigned() const: 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.
-
- - bool isInteger() const: Equivalent to isSigned() || isUnsigned().
+ - bool isInteger() const: True for any integer type.
- bool isIntegral() const: Returns true if this is an integral
type, which is either Bool type or one of the Integer types.
--
2.34.1