diff options
author | Pawel Bylica <chfast@gmail.com> | 2016-06-27 08:31:48 +0000 |
---|---|---|
committer | Pawel Bylica <chfast@gmail.com> | 2016-06-27 08:31:48 +0000 |
commit | 6830401863773c64cda865a43abcc065fe2b4fc1 (patch) | |
tree | e2086b64bfff65489e004956042c335dd27e35e9 /llvm/lib/Support/APInt.cpp | |
parent | 24b975dc66abac4e92c79c950a32f6b67e47887c (diff) | |
download | llvm-6830401863773c64cda865a43abcc065fe2b4fc1.zip llvm-6830401863773c64cda865a43abcc065fe2b4fc1.tar.gz llvm-6830401863773c64cda865a43abcc065fe2b4fc1.tar.bz2 |
APInt: remove unsued param in private method. NFC
Reviewers: davide
Subscribers: davide, llvm-commits
Differential Revision: http://reviews.llvm.org/D21638
llvm-svn: 273851
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index 9eed214..66eee99 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/lib/Support/APInt.cpp @@ -75,7 +75,7 @@ inline static unsigned getDigit(char cdigit, uint8_t radix) { } -void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) { +void APInt::initSlowCase(uint64_t val, bool isSigned) { pVal = getClearedMemory(getNumWords()); pVal[0] = val; if (isSigned && int64_t(val) < 0) |