summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/APInt.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-03-19 21:19:02 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-03-19 21:19:02 +0000
commitb1ec2e8ec7e3e8779956a8eacab2f1782c249433 (patch)
tree93f187ea021742e69d1df6993d08ebed3b8b4d7c /llvm/lib/Support/APInt.cpp
parentef599b078676bcbfd462c28fa0e5078a6ae514b5 (diff)
downloadbcm5719-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.cpp2
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");
OpenPOWER on IntegriCloud