From: Kazu Hirata Date: Tue, 1 Feb 2005 00:41:56 +0000 (+0000) Subject: * cse.c (get_cse_reg_info): Update a comment. X-Git-Tag: releases/gcc-4.0.0~1152 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=782c0a3ea9b082471e96d881b8c832405785ba2c;p=thirdparty%2Fgcc.git * cse.c (get_cse_reg_info): Update a comment. From-SVN: r94511 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c9b19570aca9..2bda0d35d496 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 PR c/19333 diff --git a/gcc/cse.c b/gcc/cse.c index 2c909b73b054..b5e15ca41477 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);