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

References

lib/Transforms/InstCombine/InstCombineCalls.cpp
 4223   if ((Op0C && Op0C->isNullValue()) || (Op1C && Op1C->isNullValue()))
 4223   if ((Op0C && Op0C->isNullValue()) || (Op1C && Op1C->isNullValue()))
 4235   } else if (isReallocLikeFn(&Call, TLI) && Op1C) {
 4238                           Call.getContext(), Op1C->getZExtValue()));
 4239   } else if (isCallocLikeFn(&Call, TLI) && Op0C && Op1C) {
 4242     APInt Size = N.umul_ov(Op1C->getValue(), Overflow);
 4256       else if (NumArgs == 2 && Op1C)
 4260                 Call.getContext(), std::min(Len, Op1C->getZExtValue() + 1)));