Join two lines that can be joined.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 27 Feb 2007 23:49:07 +0000 (23:49 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 27 Feb 2007 23:49:07 +0000 (23:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34705 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/APInt.cpp

index c13c59e3dbd1894e6dffd68831c9ef267de7e8a1..f38029ac8f21c8461dd59f85602fa0a0fe4547fe 100644 (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())