1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

getAllOnesValue also works for vectors of integers.

llvm-svn: 157915
This commit is contained in:
Duncan Sands 2012-06-04 07:18:12 +00:00
parent eb2d859f52
commit 2f70cb3b88

View File

@ -137,8 +137,8 @@ public:
static Constant *getNullValue(Type* Ty);
/// @returns the value for an integer constant of the given type that has all
/// its bits set to true.
/// @returns the value for an integer or vector of integer constant of the
/// given type that has all its bits set to true.
/// @brief Get the all ones value
static Constant *getAllOnesValue(Type* Ty);