diff options
author | Jan Hubicka <jh@suse.cz> | 2001-06-23 10:22:52 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-06-23 08:22:52 +0000 |
commit | bc04d12c309d59314c19ecb7e103fc50852c793c (patch) | |
tree | 8e6eacd1b697451e922ce33ac3c9b23457aaa141 /gcc/flow.c | |
parent | 503bf078c4f8d353ec79455b2214f561f6eabb36 (diff) | |
download | gcc-bc04d12c309d59314c19ecb7e103fc50852c793c.zip gcc-bc04d12c309d59314c19ecb7e103fc50852c793c.tar.gz gcc-bc04d12c309d59314c19ecb7e103fc50852c793c.tar.bz2 |
* flow.c (attempt_auto_inc, try_pre_increment_1): Fix typo.
From-SVN: r43527
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5526,7 +5526,7 @@ attempt_auto_inc (pbi, inc, insn, mem, incr, incr_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, @@ -6115,7 +6115,7 @@ try_pre_increment_1 (pbi, insn) 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)++; } |