gcc/analyzer/ChangeLog:
* state-purge.cc (state_purge_annotator::add_node_annotations):
Avoid duplicate before-supernode annotations when returning from
an interprocedural call. Show after-supernode annotations.
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
/* Different in-edges mean different names need purging.
Determine which points to dump. */
auto_vec<function_point> points;
- if (n.entry_p ())
+ if (n.entry_p () || n.m_returning_call)
points.safe_push (function_point::before_supernode (&n, NULL));
else
for (auto inedge : n.m_preds)
points.safe_push (function_point::before_supernode (&n, inedge));
+ points.safe_push (function_point::after_supernode (&n));
for (auto & point : points)
{