Index: lib/Analysis/InstructionSimplify.cpp =================================================================== --- lib/Analysis/InstructionSimplify.cpp +++ lib/Analysis/InstructionSimplify.cpp @@ -1309,7 +1309,7 @@ ICmpInst::isUnsigned(UnsignedPred)) ; else if (match(UnsignedICmp, - m_ICmp(UnsignedPred, m_Value(Y), m_Specific(X))) && + m_ICmp(UnsignedPred, m_Specific(Y), m_Value(X))) && ICmpInst::isUnsigned(UnsignedPred)) UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred); else Index: test/Transforms/InstCombine/range-check.ll =================================================================== --- test/Transforms/InstCombine/range-check.ll +++ test/Transforms/InstCombine/range-check.ll @@ -157,3 +157,15 @@ ret i1 %c } +; CHECK-LABEL: @test1( +; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt i32 %x, %y +; CHECK-NEXT: [[TMP2:%.*]] = zext i1 [[TMP1]] to i32 +; CHECK-NEXT: ret i32 [[TMP2]] +define i32 @test1(i32 %x, i32 %y) { + %1 = icmp ugt i32 %x, %y + %2 = icmp ne i32 %x, 0 + %3 = and i1 %2, %1 + %4 = zext i1 %3 to i32 + ret i32 %4 +} +