aboutsummaryrefslogtreecommitdiff
path: root/gcc/cse.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-02-01 00:41:56 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-02-01 00:41:56 +0000
commit782c0a3ea9b082471e96d881b8c832405785ba2c (patch)
tree96ab179389597fc1808d01b33f2e24bf5bc493bd /gcc/cse.c
parent74276db1df1d6168935a7630d9d6b3eb4b0525de (diff)
downloadgcc-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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/cse.c b/gcc/cse.c
index 2c909b7..b5e15ca 100644
--- 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);