diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-12-31 03:30:22 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-12-31 03:30:22 +0000 |
commit | c63b98cdad0bfd07d732fffbf6013893a919bfeb (patch) | |
tree | f85ebd132a52c9f4368a95dcbccd79d8403b7c9d /gcc/java/expr.c | |
parent | 6bafd8b6e9fcf4c7a9606af4fc7965717c43a161 (diff) | |
download | gcc-c63b98cdad0bfd07d732fffbf6013893a919bfeb.zip gcc-c63b98cdad0bfd07d732fffbf6013893a919bfeb.tar.gz gcc-c63b98cdad0bfd07d732fffbf6013893a919bfeb.tar.bz2 |
class.c (assume_compiled, [...]): Add static prototype.
* class.c (assume_compiled, assume_compiled_node): Add static
prototype.
(add_assume_compiled): Use xmalloc/xstrdup, not malloc/strdup.
* jcf-dump.c (ARRAY_NEW_NUM): Cast long to int in switch.
* jvgenmain.c (usage): Add static prototype with ATTRIBUTE_NORETURN.
* parse.h (OBSOLETE_MODIFIER_WARNING): Rename parameter `modifier'
to `__modifier' to avoid stringifying it.
* parse.y (verify_constructor_circularity): Don't call a variadic
function with a non-literal format string.
(java_check_abstract_methods): Move unreachable code inside
`continue' statement.
(lookup_method_invoke): Call xstrdup, not strdup.
* expr.c (expand_java_field_op): Avoid the use of ANSI string
concatenation.
* jcf-parse.c (yyparse): Likewise.
* jv-scan.c (main): Likewise.
From-SVN: r31148
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r-- | gcc/java/expr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c index 1b8d1a1..ffeddd6 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -1820,8 +1820,7 @@ expand_java_field_op (is_static, is_putting, field_ref_index) tree cfndecl_name = DECL_NAME (current_function_decl); if (! DECL_CONSTRUCTOR_P (current_function_decl) && (cfndecl_name != finit_identifier_node)) - error_with_decl (field_decl, "assignment to final field `%s' " - "not in constructor"); + error_with_decl (field_decl, "assignment to final field `%s' not in constructor"); } } expand_assignment (field_ref, new_value, 0, 0); |