reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
 3099     if (match(Op1, m_APInt(RHSC))) {
 3102       if (RHSC->isSignMask() && match(Op0, m_Sub(m_APInt(C), m_Value(X)))) {
 3104         Constant *NewC = ConstantInt::get(I.getType(), *C + *RHSC);
 3107       if (RHSC->isSignMask() && match(Op0, m_Add(m_Value(X), m_APInt(C)))) {
 3109         Constant *NewC = ConstantInt::get(I.getType(), *C + *RHSC);
 3116         Constant *NewC = ConstantInt::get(I.getType(), *C ^ *RHSC);