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

References

unittests/Analysis/LazyCallGraphTest.cpp
 1139     ASSERT_TRUE(CI) << "Expected a call: " << *U;
 1140     if (CI->getParent()->getParent() == &C1.getFunction()) {
 1141       ASSERT_EQ(nullptr, C1Call) << "Found too many C1 calls: " << *CI;
 1142       C1Call = CI;
 1143     } else if (CI->getParent()->getParent() == &D1.getFunction()) {
 1144       ASSERT_EQ(nullptr, D1Call) << "Found too many D1 calls: " << *CI;
 1145       D1Call = CI;
 1147       FAIL() << "Found an unexpected call instruction: " << *CI;