diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-26 21:06:05 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-26 21:06:05 +0000 |
commit | 946bca5bae2539ca55f8fb4700bff8b5e3f5a7eb (patch) | |
tree | 2b9b496b53b064e7bf64830fce245534edb55552 /include | |
parent | 794f4725b88060fc2e05449af3cd6a572ea46412 (diff) | |
download | external_llvm-946bca5bae2539ca55f8fb4700bff8b5e3f5a7eb.zip external_llvm-946bca5bae2539ca55f8fb4700bff8b5e3f5a7eb.tar.gz external_llvm-946bca5bae2539ca55f8fb4700bff8b5e3f5a7eb.tar.bz2 |
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ADT/APInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index f37051e..28170b8 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -467,7 +467,7 @@ public: return int64_t(VAL << (APINT_BITS_PER_WORD - BitWidth)) >> (APINT_BITS_PER_WORD - BitWidth); assert(getActiveBits() <= 64 && "Too many bits for int64_t"); - return int64_t(pVal[0]); + return int64_t(pVal[0]); } /// @returns the largest value for an APInt of the specified bit-width and |