diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-04-12 05:49:28 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-04-12 05:49:28 +0000 |
commit | b5194eeebf601743fbdc77379326ed85bc199feb (patch) | |
tree | 519c0f13dd47bbb9d3e0e583086e66474c3d093f /llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | |
parent | ecebc3db72d8f4f03cb6ce3c122f36b4cda3cec5 (diff) | |
download | bcm5719-llvm-b5194eeebf601743fbdc77379326ed85bc199feb.tar.gz bcm5719-llvm-b5194eeebf601743fbdc77379326ed85bc199feb.zip |
[InstCombine][IR] Add a commutable BinOp matcher. Use it to reduce some code. NFC
llvm-svn: 300030
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp index 9bbc5b281ab..ea8c0a6d38b 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp @@ -1272,8 +1272,7 @@ Instruction *InstCombiner::visitAnd(BinaryOperator &I) { case Instruction::Sub: Value *X; ConstantInt *C1; - if (match(Op0I, m_BinOp(m_ZExt(m_Value(X)), m_ConstantInt(C1))) || - match(Op0I, m_BinOp(m_ConstantInt(C1), m_ZExt(m_Value(X))))) { + if (match(Op0I, m_c_BinOp(m_ZExt(m_Value(X)), m_ConstantInt(C1)))) { if (AndRHSMask.isIntN(X->getType()->getScalarSizeInBits())) { auto *TruncC1 = ConstantExpr::getTrunc(C1, X->getType()); Value *BinOp; |