Commit 3d1f4922 by Richard Henderson Committed by Richard Henderson

toplev.c (rest_of_compilation): Run purge_builtin_constant_p before post-gcse cse pass.

        * toplev.c (rest_of_compilation): Run purge_builtin_constant_p
        before post-gcse cse pass.

From-SVN: r65061
parent 9311f3f6
2003-03-30 Richard Henderson <rth@redhat.com>
PR opt/10011, opt/10252:
* toplev.c (rest_of_compilation): Run purge_builtin_constant_p
before post-gcse cse pass.
2003-03-30 Roger Sayle <roger@eyesopen.com>
* dojump.c (do_jump): Copy SUBREGs into a pseudo for comparison.
......
......@@ -2929,6 +2929,10 @@ rest_of_compilation (decl)
save_cfj = flag_cse_follow_jumps;
flag_cse_skip_blocks = flag_cse_follow_jumps = 0;
/* Instantiate any remaining CONSTANT_P_RTX nodes. */
if (current_function_calls_constant_p)
purge_builtin_constant_p ();
/* If -fexpensive-optimizations, re-run CSE to clean up things done
by gcse. */
if (flag_expensive_optimizations)
......@@ -2974,10 +2978,6 @@ rest_of_compilation (decl)
#endif
}
/* Instantiate any remaining CONSTANT_P_RTX nodes. */
if (optimize > 0 && flag_gcse && current_function_calls_constant_p)
purge_builtin_constant_p ();
/* Move constant computations out of loops. */
if (optimize > 0 && flag_loop_optimize)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment