mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2290,7 +2290,7 @@ Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
|
||||
if (match(Op0, m_Not(m_Value(A)))) {
|
||||
if (match(Op1, m_Not(m_Value(B))))
|
||||
return new ICmpInst(I.getPredicate(), B, A);
|
||||
if (ConstantInt *RHSC = dyn_cast<ConstantInt>(B))
|
||||
if (ConstantInt *RHSC = dyn_cast<ConstantInt>(Op1))
|
||||
return new ICmpInst(I.getPredicate(), ConstantExpr::getNot(RHSC), A);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user