Fix coding standards violation.
[oota-llvm.git] / lib / Support / APInt.cpp
index 0d0f9ffca49a0e44573e0b0f0907e5a18c4b32f4..19eade9e5c089f49e5b5695c7cb82e78e4b181d2 100644 (file)
@@ -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");