diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-05-23 02:03:05 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-05-23 02:03:05 +0000 |
commit | a5196664236bfadccfc3b805079072340e0f542d (patch) | |
tree | 5e4b56bd77cc4a2eee13b8713b028ad6d5b4fb8e /include/llvm/ADT | |
parent | cbc8777c588173b1d7d98b29f5a0b43ad35dc6e1 (diff) | |
download | external_llvm-a5196664236bfadccfc3b805079072340e0f542d.zip external_llvm-a5196664236bfadccfc3b805079072340e0f542d.tar.gz external_llvm-a5196664236bfadccfc3b805079072340e0f542d.tar.bz2 |
Fixed trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182556 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r-- | include/llvm/ADT/APInt.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index 2c481f9..6f9450b 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -6,7 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// -/// +/// /// \file /// \brief This file implements a class to represent arbitrary precision /// integral constant values and operations on them. @@ -270,12 +270,12 @@ public: /// This constructor interprets the string \p str in the given radix. The /// interpretation stops when the first character that is not suitable for the /// radix is encountered, or the end of the string. Acceptable radix values - /// are 2, 8, 10, 16, and 36. It is an error for the value implied by the + /// are 2, 8, 10, 16, and 36. It is an error for the value implied by the /// string to require more bits than numBits. /// /// \param numBits the bit width of the constructed APInt /// \param str the string to be interpreted - /// \param radix the radix to use for the conversion + /// \param radix the radix to use for the conversion APInt(unsigned numBits, StringRef str, uint8_t radix); /// Simply makes *this a copy of that. @@ -494,7 +494,7 @@ public: Res.setBit(BitNo); return Res; } - + /// \brief Get a value with a block of bits set. /// /// Constructs an APInt value that has a contiguous range of bits set. The @@ -576,7 +576,7 @@ public: return I1.zext(I2.getBitWidth()) == I2; } - + /// \brief Overload to compute a hash_code for an APInt value. friend hash_code hash_value(const APInt &Arg); |