Searched refs:ShiftedC (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCompares.cpp | 2326 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2327 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2331 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2332 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2340 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1; in foldICmpShlConstant() local 2341 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2351 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2352 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2356 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2357 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() [all …]
|