]> gcc.gnu.org Git - gcc.git/commitdiff
* except.c (emit_handlers): Zero catch_clauses after emitting them.
authorMark Mitchell <mark@codesourcery.com>
Thu, 25 Nov 1999 02:17:23 +0000 (02:17 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 25 Nov 1999 02:17:23 +0000 (02:17 +0000)
From-SVN: r30657

gcc/java/ChangeLog
gcc/java/except.c

index 38a7d7d6396ccb69fd066c4dccf462819336b3f6..e6b19d0540fe167d5353a78ce174cbd244a7fde4 100644 (file)
@@ -1,3 +1,7 @@
+1999-11-24  Mark Mitchell  <mark@codesourcery.com>
+
+       * except.c (emit_handlers): Zero catch_clauses after emitting them.
+
 1999-11-21  Anthony Green  <green@cygnus.com>
 
        * constants.c (find_methodref_index): Unwrap method names before
index 4c48fe7237fc8ef86f597b2274fd848f7a18a5be..824be0bcb51cdf5b2fa52eaac324b051c3bd6a2f 100644 (file)
@@ -393,6 +393,7 @@ emit_handlers ()
       emit_jump (funcend);
 
       emit_insns (catch_clauses);
+      catch_clauses = NULL_RTX;
       expand_leftover_cleanups ();
 
       emit_label (funcend);
This page took 0.106505 seconds and 5 git commands to generate.