mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 15:13:49 -04:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user