From: Zdenek Dvorak Date: Fri, 20 Dec 2002 01:18:43 +0000 (+0100) Subject: * flow.c (allocate_reg_life_data): Reset REG_FREQ. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e505be854725e89835246da1ff1a899309dc0a64;p=gcc.git * flow.c (allocate_reg_life_data): Reset REG_FREQ. From-SVN: r60344 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 281975ff9d5..22112f07127 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-12-20 Zdenek Dvorak + + * flow.c (allocate_reg_life_data): Reset REG_FREQ. + 2002-12-19 Kazu Hirata * config/h8300/h8300.md (pushqi_h8300): Don't push the stack diff --git a/gcc/flow.c b/gcc/flow.c index 17cf6aa8ed4..d543ba44e8a 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -1529,6 +1529,7 @@ allocate_reg_life_data () REG_N_DEATHS (i) = 0; REG_N_CALLS_CROSSED (i) = 0; REG_LIVE_LENGTH (i) = 0; + REG_FREQ (i) = 0; REG_BASIC_BLOCK (i) = REG_BLOCK_UNKNOWN; } }