]> granicus.if.org Git - llvm/commitdiff
Fix a comment (test commit).
authorHiroshi Yamauchi <yamauchi@google.com>
Wed, 26 Jul 2017 21:54:43 +0000 (21:54 +0000)
committerHiroshi Yamauchi <yamauchi@google.com>
Wed, 26 Jul 2017 21:54:43 +0000 (21:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@309192 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/InstCombine/InstCombineAddSub.cpp

index 809471cfd74f0033ff4521af6bf378c9e8a76669..ba9b4addd8b443934ce6cfebc24b608588e1c765 100644 (file)
@@ -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))) &&