Searched defs:LHSUnsigned (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3308 bool LHSUnsigned = isa<UIToFPInst>(LHSI); local
3309 if (LHSUnsigned)
3330 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT;
3334 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE;
3338 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT;
3342 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE;
3362 if (!LHSUnsigned) {
3388 if (!LHSUnsigned) {
3416 Constant *RHSInt = LHSUnsigned
3420 bool Equal = LHSUnsigned
[all...]

Completed in 746 milliseconds