+Sat Jun 23 10:20:03 CEST 2001 Jan Hubicka <jh@suse.cz>
+
+ * flow.c (attempt_auto_inc, try_pre_increment_1): Fix typo.
+
Sat Jun 23 01:23:59 CEST 2001 Jan Hubicka <jh@suse.cz>
* flow.c (mark_set_1, attempt_auto_inc, mark_used_reg,
/* Count an extra reference to the reg. When a reg is
incremented, spilling it is worse, so we want to make
that less likely. */
- REG_FREQ (regno) += (optimize_size || !phi->bb->frequency
+ REG_FREQ (regno) += (optimize_size || !pbi->bb->frequency
? 1 : pbi->bb->frequency);
/* Count the increment as a setting of the register,
so we want to make that less likely. */
if (regno >= FIRST_PSEUDO_REGISTER)
{
- REG_FREQ (regno) += (optimize_size || !phi->bb->frequency
+ REG_FREQ (regno) += (optimize_size || !pbi->bb->frequency
? 1 : pbi->bb->frequency);
REG_N_SETS (regno)++;
}