diff options
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r-- | gcc/java/decl.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c index db851aa..682c8b3 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -1877,8 +1877,7 @@ java_mark_class_local (tree class) /* Add a statement to a compound_expr. */ tree -add_stmt_to_compound (existing, type, stmt) - tree existing, type, stmt; +add_stmt_to_compound (tree existing, tree type, tree stmt) { if (!stmt) return existing; @@ -1897,8 +1896,7 @@ add_stmt_to_compound (existing, type, stmt) constructed. */ tree -java_add_stmt (stmt) - tree stmt; +java_add_stmt (tree stmt) { if (input_filename) annotate_with_locus (stmt, input_location); |