Index: lib/Transforms/InstCombine/InstCombineAddSub.cpp =================================================================== --- lib/Transforms/InstCombine/InstCombineAddSub.cpp +++ lib/Transforms/InstCombine/InstCombineAddSub.cpp @@ -1212,6 +1212,11 @@ if (Value *V = checkForNegativeOperand(I, Builder)) return replaceInstUsesWith(I, V); + // (A + 1) + ~B --> A - B + // ~B + (A + 1) --> A - B + if (match(&I, m_c_BinOp(m_Add(m_Value(A), m_One()), m_Not(m_Value(B))))) + return BinaryOperator::CreateSub(A, B); + // X % C0 + (( X / C0 ) % C1) * C0 => X % (C0 * C1) if (Value *V = SimplifyAddWithRemainder(I)) return replaceInstUsesWith(I, V); Index: test/Transforms/InstCombine/add.ll =================================================================== --- test/Transforms/InstCombine/add.ll +++ test/Transforms/InstCombine/add.ll @@ -780,3 +780,28 @@ %value = add <2 x i32> , %A ret <2 x i32> %value } + +define i32 @test44(i32 %A, i32 %B) { +; CHECK-LABEL: @test44( +; CHECK-NEXT: [[E:%.*]] = sub i32 %A, %B +; CHECK-NEXT: ret i32 [[E]] +; + %C = xor i32 %B, -1 + %D = add i32 %A, 1 + ; E = (A + 1) + ~B = A - B + %E = add i32 %D, %C + ret i32 %E +} + +define i32 @test45(i32 %A, i32 %B) { +; CHECK-LABEL: @test45( +; CHECK-NEXT: [[E:%.*]] = sub i32 %A, %B +; CHECK-NEXT: ret i32 [[E]] +; + %C = xor i32 -1, %B + %D = add i32 1, %A + ; E = ~B + (1 + A) = A - B + %E = add i32 %C, %D + ret i32 %E +} +