diff options
-rw-r--r-- | gcc/java/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/java/decl.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 0c3aa57..8efebbe 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,9 @@ +2004-06-22 Andrew Haley <aph@redhat.com> + Ranjit Mathew <rmathew@hotmail.com> + + Fixes PR java/16113. + * decl.c (force_poplevels): Remove call to expand_end_bindings. + 2004-06-22 Ranjit Mathew <rmathew@hotmail.com> * parse.y (create_class): Correct diagnostic message about diff --git a/gcc/java/decl.c b/gcc/java/decl.c index 632f0c8..db851aa 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -1542,7 +1542,6 @@ force_poplevels (int start_pc) warning ("%JIn %D: overlapped variable and exception ranges at %d", current_function_decl, current_function_decl, current_binding_level->start_pc); - expand_end_bindings (getdecls (), 1, 0); poplevel (1, 0, 0); } } |