Searched refs:ShiftedC (Results 1 – 1 of 1) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCompares.cpp | 2093 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2094 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2098 APInt ShiftedC = C.ashr(*ShiftAmt); in foldICmpShlConstant() local 2099 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2107 APInt ShiftedC = (C - 1).ashr(*ShiftAmt) + 1; in foldICmpShlConstant() local 2108 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2123 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2124 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() 2128 APInt ShiftedC = C.lshr(*ShiftAmt); in foldICmpShlConstant() local 2129 return new ICmpInst(Pred, X, ConstantInt::get(ShType, ShiftedC)); in foldICmpShlConstant() [all …]
|