/gcc/../texinfo/makeinfo/Makefile ] ; then echo /home/mitchell/dev/egcs/objdir/gcc...
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 Nov 1999 20:06:25 +0000 (20:06 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 Nov 1999 20:06:25 +0000 (20:06 +0000)
make[1]: Entering directory `/home/mitchell/dev/egcs/objdir/gcc/cp'
gcc  -DIN_GCC    -g -W -Wall  -W -Wall  -o ../cc1plus `cat ../stamp-objlist` ../c-common.o ../c-pragma.o call.o decl.o errfn.o expr.o pt.o typeck2.o class.o decl2.o error.o lex.o parse.o ptree.o rtti.o spew.o typeck.o cvt.o except.o friend.o init.o method.o search.o semantics.o tree.o xref.o repo.o dump.o optimize.o   ../../libiberty/libiberty.a
make[1]: Leaving directory `/home/mitchell/dev/egcs/objdir/gcc/cp'
bash$ cd ~/dev/egcs/gcc
bash$ cvs update ChangeLog
P ChangeLog
bash$ cd cp
* except.c (init_eh_for_function): But still zero
eh_return_context, eh_return_stack_adjust, and eh_return_handler.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30668 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/except.c

index 040ec3a..af284aa 100644 (file)
@@ -1,5 +1,8 @@
 1999-11-25  Mark Mitchell  <mark@codesourcery.com>
 
+       * except.c (init_eh_for_function): But still zero
+       eh_return_context, eh_return_stack_adjust, and eh_return_handler.
+
        * except.h (eh_status): Adjust documentation for x_protect_list.
        (begin_protect_partials): New function.
        * except.c (enqueue_eh_entry): Fix formatting.
@@ -10,7 +13,7 @@
        (begin_protect_partials): New function.
        (end_protect_partials): Adjust usage of protect_list.
        (init_eh_for_function): Use xcalloc.
-       
+
 1999-11-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * c-common.c (check_format_info): Don't call a variadic function
index a06c408..5c85ba8 100644 (file)
@@ -2577,6 +2577,9 @@ init_eh_for_function ()
 {
   current_function->eh
     = (struct eh_status *) xcalloc (1, sizeof (struct eh_status));
+  eh_return_context = NULL_RTX;
+  eh_return_stack_adjust = NULL_RTX;
+  eh_return_handler = NULL_RTX;
 }
 
 void