Creating an all ones value for a type larger than i64 requires
using using ConstantInt::getSigned with -1, passing true to the
IsSigned operand of ConstantInt::get with -1, or using
Constant::getAllOnesValue.
Many places in tree used the ConstantInt::get -1 without IsSigned.
This likely works fine for the types they see in practice, but
it seemed better to have a more explicit way to do this.
This patch adds ConstantInt::getAllOnes and replaces other calls
to use it.
clang-format not found in user’s local PATH; not linting file.