Commit 43ac2623 by Jan Hubicka Committed by Jan Hubicka

* libgcov.c (gcov_exit): Fix two pastos.

From-SVN: r71906
parent 681a664b
Mon Sep 29 19:05:46 CEST 2003 Jan Hubicka <jh@suse.cz>
* libgcov.c (gcov_exit): Fix two pastos.
2003-09-29 Kazu Hirata <kazu@cs.umass.edu> 2003-09-29 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (*tst_extzv_1_n): Combine with the * config/h8300/h8300.md (*tst_extzv_1_n): Combine with the
......
...@@ -174,7 +174,7 @@ gcov_exit (void) ...@@ -174,7 +174,7 @@ gcov_exit (void)
if (!((1 << t_ix) & gi_ptr->ctr_mask)) if (!((1 << t_ix) & gi_ptr->ctr_mask))
continue; continue;
cs_ptr = &this_program.ctrs[t_ix]; cs_ptr = &this_object.ctrs[t_ix];
cs_ptr->num += ci_ptr->num; cs_ptr->num += ci_ptr->num;
for (c_num = 0; c_num < ci_ptr->num; c_num++) for (c_num = 0; c_num < ci_ptr->num; c_num++)
{ {
...@@ -324,7 +324,7 @@ gcov_exit (void) ...@@ -324,7 +324,7 @@ gcov_exit (void)
cs_obj = &object.ctrs[t_ix]; cs_obj = &object.ctrs[t_ix];
cs_tobj = &this_object.ctrs[t_ix]; cs_tobj = &this_object.ctrs[t_ix];
cs_prg = &program.ctrs[t_ix]; cs_prg = &program.ctrs[t_ix];
cs_tprg = &program.ctrs[t_ix]; cs_tprg = &this_program.ctrs[t_ix];
cs_all = &all.ctrs[t_ix]; cs_all = &all.ctrs[t_ix];
if ((1 << t_ix) & gi_ptr->ctr_mask) if ((1 << t_ix) & gi_ptr->ctr_mask)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment