diff options
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cse.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c9b1957..2bda0d3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 @@ -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); |