mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-13 16:03:58 +00:00
Silencing a usually-helpful-but-braindead-silly-in-this-case sign mismatch warning with MSVC. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217143 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dfe4e3e706
commit
fa9120f514
@ -11061,7 +11061,7 @@ bool ARMTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
|
||||
// and up to 64 bits on the non-M profiles
|
||||
bool ARMTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
|
||||
unsigned Size = AI->getType()->getPrimitiveSizeInBits();
|
||||
return Size <= (Subtarget->isMClass() ? 32 : 64);
|
||||
return Size <= (Subtarget->isMClass() ? 32U : 64U);
|
||||
}
|
||||
|
||||
// This has so far only been implemented for MachO.
|
||||
|
Loading…
x
Reference in New Issue
Block a user