Skip to content

Commit 43c9db9

Browse files
committed
Fixed comment.
1 parent 441249f commit 43c9db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2815,7 +2815,7 @@ Instruction *InstCombinerImpl::visitSub(BinaryOperator &I) {
28152815
}
28162816

28172817
// (sub[ nsw] (sext (add nsw (X, Y)), sext (add nsw (X, Z)))) -->
2818-
// --> (sub[ nsw] (sext (Y), sext(Z)))
2818+
// --> (sub[ nsw] (sext (Y), sext (Z)))
28192819
{
28202820
Value *Z, *Add0, *Add1;
28212821
if (match(Op0, m_SExtLike(m_Value(Add0))) &&

0 commit comments

Comments
 (0)