mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
simplify this code, duh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95643 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1147,19 +1147,15 @@ static Instruction *MatchSelectFromAndOr(Value *A, Value *B,
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
// ((cond?-1:0)&C) | (B&(cond?0:-1)) -> cond ? C : B.
|
// ((cond?-1:0)&C) | (B&(cond?0:-1)) -> cond ? C : B.
|
||||||
if (match(D, m_Not(m_SExt(m_Specific(Cond)))) &&
|
if (match(D, m_Not(m_SExt(m_Specific(Cond)))))
|
||||||
Cond->getType()->isInteger(1))
|
|
||||||
return SelectInst::Create(Cond, C, B);
|
return SelectInst::Create(Cond, C, B);
|
||||||
if (match(D, m_SExt(m_Not(m_Specific(Cond)))) &&
|
if (match(D, m_SExt(m_Not(m_Specific(Cond)))))
|
||||||
Cond->getType()->isInteger(1))
|
|
||||||
return SelectInst::Create(Cond, C, B);
|
return SelectInst::Create(Cond, C, B);
|
||||||
|
|
||||||
// ((cond?-1:0)&C) | ((cond?0:-1)&D) -> cond ? C : D.
|
// ((cond?-1:0)&C) | ((cond?0:-1)&D) -> cond ? C : D.
|
||||||
if (match(B, m_Not(m_SExt(m_Specific(Cond)))) &&
|
if (match(B, m_Not(m_SExt(m_Specific(Cond)))))
|
||||||
Cond->getType()->isInteger(1))
|
|
||||||
return SelectInst::Create(Cond, C, D);
|
return SelectInst::Create(Cond, C, D);
|
||||||
if (match(B, m_SExt(m_Not(m_Specific(Cond)))) &&
|
if (match(B, m_SExt(m_Not(m_Specific(Cond)))))
|
||||||
Cond->getType()->isInteger(1))
|
|
||||||
return SelectInst::Create(Cond, C, D);
|
return SelectInst::Create(Cond, C, D);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user