mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-13 06:34:24 +00:00
[PowerPC] use UINT64_C instead of ul
Attempting to fix PR22078 (building on 32-bit systems) by replacing my careless use of 1ul to be a uint64_t constant with UINT64_C(1). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225066 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
31379e2e69
commit
32399786f9
@ -1127,7 +1127,7 @@ class BitPermutationSelector {
|
||||
for (unsigned i = 0; i < Bits.size(); ++i) {
|
||||
if (Bits[i].hasValue())
|
||||
continue;
|
||||
Mask |= (1ul << i);
|
||||
Mask |= (UINT64_C(1) << i);
|
||||
}
|
||||
|
||||
return ~Mask;
|
||||
@ -1491,12 +1491,12 @@ class BitPermutationSelector {
|
||||
|
||||
if (BG.StartIdx <= BG.EndIdx) {
|
||||
for (unsigned i = BG.StartIdx; i <= BG.EndIdx; ++i)
|
||||
Mask |= (1ul << i);
|
||||
Mask |= (UINT64_C(1) << i);
|
||||
} else {
|
||||
for (unsigned i = BG.StartIdx; i < Bits.size(); ++i)
|
||||
Mask |= (1ul << i);
|
||||
Mask |= (UINT64_C(1) << i);
|
||||
for (unsigned i = 0; i <= BG.EndIdx; ++i)
|
||||
Mask |= (1ul << i);
|
||||
Mask |= (UINT64_C(1) << i);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user