diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-03-20 06:19:51 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-03-20 06:19:51 +0000 |
commit | 6eabd74d1a236effc6757e7c81182fa1ecd52ac6 (patch) | |
tree | b6d1c9d6c2960eb77c906f39f10a016352a2ccc7 | |
parent | f70107fe1cd44bef7ab9cb97b27648c89967dda8 (diff) | |
download | external_llvm-6eabd74d1a236effc6757e7c81182fa1ecd52ac6.zip external_llvm-6eabd74d1a236effc6757e7c81182fa1ecd52ac6.tar.gz external_llvm-6eabd74d1a236effc6757e7c81182fa1ecd52ac6.tar.bz2 |
ubyte and sbyte? what are those?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48585 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Constants.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index c69bad4..f71c655 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -320,8 +320,8 @@ public: return reinterpret_cast<const ArrayType*>(Value::getType()); } - /// isString - This method returns true if the array is an array of sbyte or - /// ubyte, and if the elements of the array are all ConstantInt's. + /// isString - This method returns true if the array is an array of i8 and + /// the elements of the array are all ConstantInt's. bool isString() const; /// isCString - This method returns true if the array is a string (see |