forked from OSchip/llvm-project
When profiling an ExplodedNode, don't re-profile the state: they have
already been uniqued. llvm-svn: 78279
This commit is contained in:
parent
d806156d54
commit
ed31f99efb
|
@ -51,7 +51,7 @@ void ExplodedNode::Profile(llvm::FoldingSetNodeID& ID,
|
|||
const ProgramPoint& Loc,
|
||||
const GRState* state) {
|
||||
ID.Add(Loc);
|
||||
state->Profile(ID);
|
||||
ID.AddPointer(state);
|
||||
}
|
||||
|
||||
void ExplodedNode::addPredecessor(ExplodedNode* V) {
|
||||
|
|
Loading…
Reference in New Issue