analyzer: remove unused field

I added this field (and the struct itself) in the rewrite of region and
value-handling (808f4dfeb3), but the field
was never used.

Found by cppcheck.

gcc/analyzer/ChangeLog:
	* diagnostic-manager.cc (null_assignment_sm_context::m_visitor):
	Remove unused field.
This commit is contained in:
David Malcolm 2020-09-28 16:53:53 -04:00
parent 01eabbeadb
commit 20d16d61dd

View file

@ -931,7 +931,6 @@ struct null_assignment_sm_context : public sm_context
const program_state *m_new_state;
const gimple *m_stmt;
const program_point *m_point;
state_change_visitor *m_visitor;
checker_path *m_emission_path;
const extrinsic_state &m_ext_state;
};