gcc/analyzer/ChangeLog:
* engine.cc (exploded_node::on_stmt_pre): Return when handling
"__analyzer_dump_state".
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
return;
}
else if (is_special_named_call_p (call, "__analyzer_dump_state", 2))
- state->impl_call_analyzer_dump_state (call, eg.get_ext_state (),
- ctxt);
+ {
+ state->impl_call_analyzer_dump_state (call, eg.get_ext_state (),
+ ctxt);
+ return;
+ }
else if (is_setjmp_call_p (call))
{
state->m_region_model->on_setjmp (call, this, ctxt);