* regrename.c (copy_value): Fix comment.
authorJakub Jelinek <jakub@redhat.com>
Mon, 27 Jun 2005 08:11:00 +0000 (10:11 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 27 Jun 2005 08:11:00 +0000 (10:11 +0200)
From-SVN: r101351

gcc/ChangeLog
gcc/regrename.c

index 9fe1c39..092783d 100644 (file)
@@ -1,5 +1,7 @@
 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.
 
index 91e9d71..3a596ff 100644 (file)
@@ -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;