diff options
author | Hiroshi Yamauchi <yamauchi@google.com> | 2017-07-26 21:54:43 +0000 |
---|---|---|
committer | Hiroshi Yamauchi <yamauchi@google.com> | 2017-07-26 21:54:43 +0000 |
commit | 0445e31c884c3fc88d4404b2e77039a35ffce077 (patch) | |
tree | 1b17caea12e109323e848c50c1e8c61f1c98e7ee /llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp | |
parent | b0e62297427a6d4725cdffbd82d96f1ff7ef310e (diff) | |
download | bcm5719-llvm-0445e31c884c3fc88d4404b2e77039a35ffce077.tar.gz bcm5719-llvm-0445e31c884c3fc88d4404b2e77039a35ffce077.zip |
Fix a comment (test commit).
llvm-svn: 309192
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp index 809471cfd74..ba9b4addd8b 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp @@ -1600,7 +1600,7 @@ Instruction *InstCombiner::visitSub(BinaryOperator &I) { return BinaryOperator::CreateNeg(Y); } - // (sub (or A, B) (xor A, B)) --> (and A, B) + // (sub (or A, B), (xor A, B)) --> (and A, B) { Value *A, *B; if (match(Op1, m_Xor(m_Value(A), m_Value(B))) && |