diff options
author | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-10-05 21:13:46 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-10-05 21:13:46 +0000 |
commit | 08d292de2001aa502cb556681a341f16766102ec (patch) | |
tree | 7094fa81d35f056738fa74f7a3aa1c7a8ee5f37a | |
parent | 877ca132eceb915544b53160017805975323b630 (diff) | |
download | gcc-08d292de2001aa502cb556681a341f16766102ec.zip gcc-08d292de2001aa502cb556681a341f16766102ec.tar.gz gcc-08d292de2001aa502cb556681a341f16766102ec.tar.bz2 |
call.c (build_object_call): Move declaration of variable `fn' into the scope where it is used.
* call.c (build_object_call): Move declaration of variable
`fn' into the scope where it is used. Don't access variable
`fn' when it is uninitialized, instead use `fns'.
From-SVN: r22849
-rw-r--r-- | gcc/cp/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 86bd8c9..7891064 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +Tue Oct 6 00:07:14 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * call.c (build_object_call): Move declaration of variable + `fn' into the scope where it is used. Don't access variable + `fn' when it is uninitialized, instead use `fns'. + 1998-10-04 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> * errfn.c (cp_thing): Print buf as a string not as a printf format |