diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-27 23:49:07 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-27 23:49:07 +0000 |
commit | f5c0fd9e166b850461683e0914d1ff15829d6b67 (patch) | |
tree | 7306557949c646a12191592055057f019721ab50 /lib/Support/APInt.cpp | |
parent | 9d3c51923392f69b63512e59e44f72affbe6136e (diff) |
Join two lines that can be joined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34705 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r-- | lib/Support/APInt.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index c13c59e3db..f38029ac8f 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -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()) |