diff options
Diffstat (limited to 'gcc/ipa-cp.c')
-rw-r--r-- | gcc/ipa-cp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c index 2b1e50dc..a2928db 100644 --- a/gcc/ipa-cp.c +++ b/gcc/ipa-cp.c @@ -1539,6 +1539,8 @@ ipcp_driver (void) ipa_print_all_params (dump_file); ipa_print_all_jump_functions (dump_file); } + ipa_check_create_node_params (); + ipa_check_create_edge_args (); /* 2. Do the interprocedural propagation. */ ipcp_iterate_stage (); /* 3. Insert the constants found to the functions. */ @@ -1566,8 +1568,6 @@ ipcp_generate_summary (void) if (dump_file) fprintf (dump_file, "\nIPA constant propagation start:\n"); - ipa_check_create_node_params (); - ipa_check_create_edge_args (); ipa_register_cgraph_hooks (); for (node = cgraph_nodes; node; node = node->next) |