Commit de16a5b6 by Jakub Jelinek Committed by Jakub Jelinek

* regrename.c (copy_value): Fix comment.

From-SVN: r101351
parent fd5431bc
2005-06-27 Jakub Jelinek <jakub@redhat.com>
* regrename.c (copy_value): Fix comment.
* toplev.c (process_options): Use if (FRAME_GROWS_DOWNWARD)
instead of preprocessor conditionals.
......
......@@ -1225,7 +1225,9 @@ copy_value (rtx dest, rtx src, struct value_data *vd)
if (frame_pointer_needed && dr == HARD_FRAME_POINTER_REGNUM)
return;
/* Likewise for fixed or global registers. */
/* Do not propagate copies to fixed or global registers, patterns
can be relying to see particular fixed register or users can
expect the chosen global register in asm. */
if (fixed_regs[dr] || global_regs[dr])
return;
......
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