forked from OSchip/llvm-project
parent
6f20dc8988
commit
f884cd42cc
|
@ -1197,7 +1197,7 @@ CallEventManager::getCaller(const StackFrameContext *CalleeCtx,
|
|||
// destructors, though this could change in the future.
|
||||
const CFGBlock *B = CalleeCtx->getCallSiteBlock();
|
||||
CFGElement E = (*B)[CalleeCtx->getIndex()];
|
||||
assert(E.getAs<CFGImplicitDtor>() || E.getAs<CFGTemporaryDtor>() &&
|
||||
assert((E.getAs<CFGImplicitDtor>() || E.getAs<CFGTemporaryDtor>()) &&
|
||||
"All other CFG elements should have exprs");
|
||||
|
||||
SValBuilder &SVB = State->getStateManager().getSValBuilder();
|
||||
|
|
Loading…
Reference in New Issue