[llvm-commits] CVS: llvm/lib/Support/APInt.cpp
Reid Spencer
reid at x10sys.com
Mon Mar 19 14:19:19 PDT 2007
Changes in directory llvm/lib/Support:
APInt.cpp updated: 1.72 -> 1.73
---
Log message:
Fix coding standards violation.
---
Diffs of the changes: (+1 -1)
APInt.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Support/APInt.cpp
diff -u llvm/lib/Support/APInt.cpp:1.72 llvm/lib/Support/APInt.cpp:1.73
--- llvm/lib/Support/APInt.cpp:1.72 Mon Mar 19 15:37:47 2007
+++ llvm/lib/Support/APInt.cpp Mon Mar 19 16:19:02 2007
@@ -43,7 +43,7 @@
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");
More information about the llvm-commits
mailing list