]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Initialize node_is_self_scc in ipa_node_params::ipa_node_params
authorJan Hubicka <jh@suse.cz>
Thu, 25 Nov 2021 13:48:14 +0000 (14:48 +0100)
committerJan Hubicka <jh@suse.cz>
Thu, 25 Nov 2021 13:48:14 +0000 (14:48 +0100)
gcc/ChangeLog:

2021-11-25  Jan Hubicka  <hubicka@ucw.cz>

* ipa-prop.h (ipa_node_params::ipa_node_params): Initialize
node_is_self_scc.

gcc/ipa-prop.h

index 42842d9466a3c26dff80d1fd00d910601c2cea6e..1d0c115465c9f9a3d0df44512b64fd846c3f0e39 100644 (file)
@@ -623,8 +623,8 @@ ipa_node_params::ipa_node_params ()
 : descriptors (NULL), lattices (NULL), ipcp_orig_node (NULL),
   known_csts (vNULL), known_contexts (vNULL), analysis_done (0),
   node_enqueued (0), do_clone_for_all_contexts (0), is_all_contexts_clone (0),
-  node_dead (0), node_within_scc (0), node_calling_single_call (0),
-  versionable (0)
+  node_dead (0), node_within_scc (0), node_is_self_scc (0),
+  node_calling_single_call (0), versionable (0)
 {
 }