* cse.c (get_cse_reg_info): Update a comment.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 1 Feb 2005 00:41:56 +0000 (00:41 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 1 Feb 2005 00:41:56 +0000 (00:41 +0000)
From-SVN: r94511

gcc/ChangeLog
gcc/cse.c

index c9b1957..2bda0d3 100644 (file)
@@ -17,6 +17,8 @@
        registers to cse_reg_info entries.
        (cse_main): Call init_cse_reg_info.
 
+       * cse.c (get_cse_reg_info): Update a comment.
+
 2005-01-31  Steven Bosscher  <stevenb@suse.de>
 
        PR c/19333
index 2c909b7..b5e15ca 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -910,9 +910,8 @@ get_cse_reg_info (unsigned int regno)
 {
   struct cse_reg_info *p = &cse_reg_info_table[regno];
 
-  /* If we are looking for REGNO that is different from the last
-     look-up, make sure the entry for REGNO exists and has been
-     initialized.  */
+  /* If this entry has not been initialized, go ahead and initialize
+     it.  */
   if (p->timestamp != cse_reg_info_timestamp)
     get_cse_reg_info_1 (regno);