Fix a regression in InstCombine/xor.ll
authorChris Lattner <sabre@nondot.org>
Sun, 1 Aug 2004 19:42:59 +0000 (19:42 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 1 Aug 2004 19:42:59 +0000 (19:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15410 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index b39f077d0256beae54aa16d45dd408b08bee1345..747abc2f5bb4a3ee2156708611d8322f3ca8dfd4 100644 (file)
@@ -1343,11 +1343,11 @@ Instruction *InstCombiner::visitXor(BinaryOperator &I) {
         return ReplaceInstUsesWith(I, Op0I->getOperand(0));
     }
 
-  // (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1^C2 == 0
+  // (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
   Value *A, *B; ConstantInt *C1, *C2;
   if (match(Op0, m_And(m_Value(A), m_ConstantInt(C1))) &&
       match(Op1, m_And(m_Value(B), m_ConstantInt(C2))) &&
-      ConstantExpr::getXor(C1, C2)->isNullValue())
+      ConstantExpr::getAnd(C1, C2)->isNullValue())
     return BinaryOperator::createOr(Op0, Op1);
 
   // (setcc1 A, B) ^ (setcc2 A, B) --> (setcc3 A, B)