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

From-SVN: r71906
This commit is contained in:
Jan Hubicka 2003-09-29 19:09:36 +02:00 committed by Jan Hubicka
parent 681a664b13
commit 43ac26234a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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>
* config/h8300/h8300.md (*tst_extzv_1_n): Combine with the

View File

@ -174,7 +174,7 @@ gcov_exit (void)
if (!((1 << t_ix) & gi_ptr->ctr_mask))
continue;
cs_ptr = &this_program.ctrs[t_ix];
cs_ptr = &this_object.ctrs[t_ix];
cs_ptr->num += ci_ptr->num;
for (c_num = 0; c_num < ci_ptr->num; c_num++)
{
@ -324,7 +324,7 @@ gcov_exit (void)
cs_obj = &object.ctrs[t_ix];
cs_tobj = &this_object.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];
if ((1 << t_ix) & gi_ptr->ctr_mask)