diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-02-01 00:41:56 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-02-01 00:41:56 +0000 |
commit | 782c0a3ea9b082471e96d881b8c832405785ba2c (patch) | |
tree | 96ab179389597fc1808d01b33f2e24bf5bc493bd /gcc/cse.c | |
parent | 74276db1df1d6168935a7630d9d6b3eb4b0525de (diff) | |
download | gcc-782c0a3ea9b082471e96d881b8c832405785ba2c.zip gcc-782c0a3ea9b082471e96d881b8c832405785ba2c.tar.gz gcc-782c0a3ea9b082471e96d881b8c832405785ba2c.tar.bz2 |
* cse.c (get_cse_reg_info): Update a comment.
From-SVN: r94511
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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); |