* decl.c (force_poplevels): Fix warning call.

From-SVN: r69782
This commit is contained in:
Nathan Sidwell 2003-07-25 10:58:33 +00:00 committed by Nathan Sidwell
parent 50fc59e78b
commit b8bae36530
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-07-25 Nathan Sidwell <nathan@codesourcery.com>
* decl.c (force_poplevels): Fix warning call.
2003-07-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
* expr.c (expand_java_field_op): Don't use xxx_with_decl

View File

@ -1500,8 +1500,7 @@ force_poplevels (int start_pc)
while (current_binding_level->start_pc > start_pc)
{
if (pedantic && current_binding_level->start_pc > start_pc)
warning (current_function_decl,
"%HIn %D: overlapped variable and exception ranges at %d",
warning ("%HIn %D: overlapped variable and exception ranges at %d",
&DECL_SOURCE_LOCATION (current_function_decl),
current_function_decl, current_binding_level->start_pc);
expand_end_bindings (getdecls (), 1, 0);