diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-23 20:01:29 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-23 20:01:29 +0000 |
commit | 5fce5299af4810e08744160f9387d11ef1623a94 (patch) | |
tree | c9663c118c473b5fc50a9f3781ed3452e9f94056 /gcc/ira-lives.c | |
parent | e74b076da6338645b4e2010f97ef50577b314d5f (diff) | |
download | gcc-5fce5299af4810e08744160f9387d11ef1623a94.tar.gz |
* ipa-cp.c (ipcp_compute_node_scale): Work around completely
wrong profile updates.
* predict.c (counts_to_freqs): Be expected for ENTRY/EXIT block
having largest frequency.
* ira-live.c (ira_implicitly_set_insn_hard_regs): Silecne
used uninitalized warning.
* tree-optimize.c (execute_fixup_cfg): Rescale entry and exit block
frequencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154462 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ira-lives.c')
-rw-r--r-- | gcc/ira-lives.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ira-lives.c b/gcc/ira-lives.c index c67e89cbd79..ea241f4732c 100644 --- a/gcc/ira-lives.c +++ b/gcc/ira-lives.c @@ -745,7 +745,7 @@ single_reg_operand_class (int op_num) void ira_implicitly_set_insn_hard_regs (HARD_REG_SET *set) { - int i, c, regno; + int i, c, regno = 0; bool ignore_p; enum reg_class cl; rtx op; |