APInt: remove unsued param in private method. NFC

Reviewers: davide

Subscribers: davide, llvm-commits

Differential Revision: http://reviews.llvm.org/D21638

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273851 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Pawel Bylica
2016-06-27 08:31:48 +00:00
parent b256e8a5b2
commit 7fe7e468cf
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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)