diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-19 21:19:02 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-19 21:19:02 +0000 |
commit | adf2a206ecc11cc6427cc0aa19d366089c8b747f (patch) | |
tree | bfb05f897e89fc62635f45e55e8077d94af92224 /lib/Support/APInt.cpp | |
parent | 3a2a9fbf997e42cb05c0d1f07b7445aa804ca711 (diff) |
Fix coding standards violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35189 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r-- | lib/Support/APInt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index 0d0f9ffca4..19eade9e5c 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -43,7 +43,7 @@ inline static uint64_t* getMemory(uint32_t numWords) { return result; } -APInt::APInt(uint32_t numBits, uint64_t val, bool isSigned ) +APInt::APInt(uint32_t numBits, uint64_t val, bool isSigned) : BitWidth(numBits), VAL(0) { assert(BitWidth >= IntegerType::MIN_INT_BITS && "bitwidth too small"); assert(BitWidth <= IntegerType::MAX_INT_BITS && "bitwidth too large"); |