diff options
| author | Mark Mitchell <mark@codesourcery.com> | 1999-11-25 02:17:23 +0000 |
|---|---|---|
| committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-11-25 02:17:23 +0000 |
| commit | 9a260e9924e983c75b69431c202c960e8671829b (patch) | |
| tree | 9148886a338491882e220de1068d60c38d9f9479 | |
| parent | f0adc63709230f151d4e4693041097e2f6130c64 (diff) | |
| download | gcc-9a260e9924e983c75b69431c202c960e8671829b.zip gcc-9a260e9924e983c75b69431c202c960e8671829b.tar.gz gcc-9a260e9924e983c75b69431c202c960e8671829b.tar.bz2 | |
* except.c (emit_handlers): Zero catch_clauses after emitting them.
From-SVN: r30657
| -rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/java/except.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 38a7d7d..e6b19d0 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -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 diff --git a/gcc/java/except.c b/gcc/java/except.c index 4c48fe7..824be0b 100644 --- a/gcc/java/except.c +++ b/gcc/java/except.c @@ -393,6 +393,7 @@ emit_handlers () emit_jump (funcend); emit_insns (catch_clauses); + catch_clauses = NULL_RTX; expand_leftover_cleanups (); emit_label (funcend); |
