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 | b1ec2e8ec7e3e8779956a8eacab2f1782c249433 (patch) | |
tree | 93f187ea021742e69d1df6993d08ebed3b8b4d7c /llvm/lib/Support/APInt.cpp | |
parent | ef599b078676bcbfd462c28fa0e5078a6ae514b5 (diff) | |
download | bcm5719-llvm-b1ec2e8ec7e3e8779956a8eacab2f1782c249433.tar.gz bcm5719-llvm-b1ec2e8ec7e3e8779956a8eacab2f1782c249433.zip |
Fix coding standards violation.
llvm-svn: 35189
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index 0d0f9ffca49..19eade9e5c0 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/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"); |