reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 1113     Constant *R = ConstantInt::get(X->getType(),
 1115     return new ICmpInst(ICmpInst::ICMP_UGT, X, R);
 1122     return new ICmpInst(ICmpInst::ICMP_ULT, X,
 1123                         ConstantInt::get(X->getType(), -C));
 1134     return new ICmpInst(ICmpInst::ICMP_SGT, X,
 1135                         ConstantInt::get(X->getType(), SMax - C));
 1145   return new ICmpInst(ICmpInst::ICMP_SLT, X,
 1146                       ConstantInt::get(X->getType(), SMax - (C - 1)));