For APInt::z/sext(width), if width == BitWidth, just return *this.

llvm-svn: 35065
This commit is contained in:
Zhou Sheng
2007-03-12 17:47:45 +00:00
parent 1791f23803
commit 3999ffa0c8

View File

@@ -921,6 +921,8 @@ APInt &APInt::trunc(uint32_t width) {
// Sign extend to a new width.
APInt &APInt::sext(uint32_t width) {
if (width == BitWidth)
return *this;
assert(width > BitWidth && "Invalid APInt SignExtend request");
assert(width <= IntegerType::MAX_INT_BITS && "Too many bits");
// If the sign bit isn't set, this is the same as zext.
@@ -969,6 +971,8 @@ APInt &APInt::sext(uint32_t width) {
// Zero extend to a new width.
APInt &APInt::zext(uint32_t width) {
if (width == BitWidth)
return *this;
assert(width > BitWidth && "Invalid APInt ZeroExtend request");
assert(width <= IntegerType::MAX_INT_BITS && "Too many bits");
uint32_t wordsBefore = getNumWords();