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 | c2d433d47a1a1b9536a0fe6068aeeb9f1a4ba1be (patch) | |
| tree | c9502eff8fac56aa309da95e73b27ce1ace03783 | |
| parent | 98765e17df82b37541f5b92a09d0e3dbf0abb1fe (diff) | |
| download | bcm5719-llvm-c2d433d47a1a1b9536a0fe6068aeeb9f1a4ba1be.tar.gz bcm5719-llvm-c2d433d47a1a1b9536a0fe6068aeeb9f1a4ba1be.zip | |
Join two lines that can be joined.
llvm-svn: 34705
| -rw-r--r-- | llvm/lib/Support/APInt.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index c13c59e3dbd..f38029ac8f2 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/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()) |

