1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Join two lines that can be joined.

llvm-svn: 34705
This commit is contained in:
Reid Spencer 2007-02-27 23:49:07 +00:00
parent 355cec42d1
commit e306ef6798

View File

@ -42,8 +42,7 @@ inline static uint64_t* getMemory(uint32_t numWords) {
return result;
}
APInt::APInt(uint32_t numBits, uint64_t val)
: BitWidth(numBits), VAL(0) {
APInt::APInt(uint32_t numBits, uint64_t val) : BitWidth(numBits), VAL(0) {
assert(BitWidth >= IntegerType::MIN_INT_BITS && "bitwidth too small");
assert(BitWidth <= IntegerType::MAX_INT_BITS && "bitwidth too large");
if (isSingleWord())