This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[RFC] Unused variable in profile.c
- From: Edmar Wienskoski <edmarwjr at gmail dot com>
- To: gcc at gcc dot gnu dot org
- Date: Tue, 10 Mar 2009 14:58:42 -0500
- Subject: [RFC] Unused variable in profile.c
I accidentally found that the local variable
num_never_executed
in function compute_branch_probabilities, is initialized to zero
and never gets modified after that.
I suppose the statement in line 603:
num_branches++, num_never_executed;
was intended to be:
num_branches++, num_never_executed++;
Right ?
Thanks,
Edmar