[llvm-commits] CVS: llvm/lib/Support/APInt.cpp
Reid Spencer
reid at x10sys.com
Tue Feb 27 15:49:24 PST 2007
Changes in directory llvm/lib/Support:
APInt.cpp updated: 1.56 -> 1.57
---
Log message:
Join two lines that can be joined.
---
Diffs of the changes: (+1 -2)
APInt.cpp | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/lib/Support/APInt.cpp
diff -u llvm/lib/Support/APInt.cpp:1.56 llvm/lib/Support/APInt.cpp:1.57
--- llvm/lib/Support/APInt.cpp:1.56 Tue Feb 27 15:59:26 2007
+++ llvm/lib/Support/APInt.cpp Tue Feb 27 17:49:07 2007
@@ -42,8 +42,7 @@
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())
More information about the llvm-commits
mailing list