mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Silencing an MSVC signed comparison warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202295 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4a7156d421
commit
a4e265ae47
@ -189,7 +189,7 @@ bool PPCCTRLoops::runOnFunction(Function &F) {
|
||||
|
||||
static bool isLargeIntegerTy(bool Is32Bit, Type *Ty) {
|
||||
if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
|
||||
return ITy->getBitWidth() > (Is32Bit ? 32 : 64);
|
||||
return ITy->getBitWidth() > (Is32Bit ? 32U : 64U);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user