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:
Aaron Ballman 2014-02-26 20:22:20 +00:00
parent 4a7156d421
commit a4e265ae47

View File

@ -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;
}