summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/APInt.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:20:18 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:20:18 +0000
commita2769a33c94f021a609a462b28ebea069eba6f74 (patch)
treeb8bcb623c4e5d2c65ede773869d5a14e168b1324 /include/llvm/ADT/APInt.h
parent1bcf0f5e45fd4e17b1be5fc80984b3c1722ba381 (diff)
downloadllvm-a2769a33c94f021a609a462b28ebea069eba6f74.tar.gz
llvm-a2769a33c94f021a609a462b28ebea069eba6f74.tar.bz2
llvm-a2769a33c94f021a609a462b28ebea069eba6f74.tar.xz
Fixed lint errors:
* Alphabetized #includes * Removed trailing whitespace * Wrapped or shortened lines over 80 chars git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/APInt.h')
-rw-r--r--include/llvm/ADT/APInt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h
index 3bbd5278e9..a309d7f995 100644
--- a/include/llvm/ADT/APInt.h
+++ b/include/llvm/ADT/APInt.h
@@ -1275,7 +1275,8 @@ public:
/// srcLSB, to DST, of dstCOUNT parts, such that the bit srcLSB
/// becomes the least significant bit of DST. All high bits above
/// srcBITS in DST are zero-filled.
- static void tcExtract(integerPart *, unsigned int dstCount, const integerPart *,
+ static void tcExtract(integerPart *, unsigned int dstCount,
+ const integerPart *,
unsigned int srcBits, unsigned int srcLSB);
/// Set the given bit of a bignum. Zero-based.