mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Cygwin defines uint32_t as unsigned long. Unbreak call to std::min in this case
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45342 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ec9e7163b8
commit
97d37260df
@ -791,7 +791,7 @@ uint32_t APInt::countLeadingOnes() const {
|
||||
|
||||
uint32_t APInt::countTrailingZeros() const {
|
||||
if (isSingleWord())
|
||||
return std::min(CountTrailingZeros_64(VAL), BitWidth);
|
||||
return std::min(uint32_t(CountTrailingZeros_64(VAL)), BitWidth);
|
||||
uint32_t Count = 0;
|
||||
uint32_t i = 0;
|
||||
for (; i < getNumWords() && pVal[i] == 0; ++i)
|
||||
|
Loading…
Reference in New Issue
Block a user