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

References

lib/Transforms/InstCombine/InstCombineInternal.h
   84   if (isa<Instruction>(V)) {
   85     if (isa<CastInst>(V) || match(V, m_Neg(m_Value())) ||
   85     if (isa<CastInst>(V) || match(V, m_Neg(m_Value())) ||
   86         match(V, m_Not(m_Value())) || match(V, m_FNeg(m_Value())))
   86         match(V, m_Not(m_Value())) || match(V, m_FNeg(m_Value())))
   90   if (isa<Argument>(V))
   92   return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;
   92   return isa<Constant>(V) ? (isa<UndefValue>(V) ? 0 : 1) : 2;