summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-27 23:49:07 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-27 23:49:07 +0000
commitc2d433d47a1a1b9536a0fe6068aeeb9f1a4ba1be (patch)
treec9502eff8fac56aa309da95e73b27ce1ace03783
parent98765e17df82b37541f5b92a09d0e3dbf0abb1fe (diff)
downloadbcm5719-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.cpp3
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())
OpenPOWER on IntegriCloud