mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-18 16:11:30 +08:00
analyzer: fix sm_state_map::print
In 10fc42a8396072912e9d9d940fba25950b3fdfc5 I converted state_t from unsigned to const state *, but missed this comparison against 0. gcc/analyzer/ChangeLog: * program-state.cc (sm_state_map::print): Update check for m_global_state being the start state.
This commit is contained in:
parent
9042b6605c
commit
53d28fd4e1
@ -160,7 +160,7 @@ sm_state_map::print (const region_model *model,
|
||||
bool first = true;
|
||||
if (!multiline)
|
||||
pp_string (pp, "{");
|
||||
if (m_global_state != 0)
|
||||
if (m_global_state != m_sm.get_start_state ())
|
||||
{
|
||||
if (multiline)
|
||||
pp_string (pp, " ");
|
||||
|
Loading…
x
Reference in New Issue
Block a user