Commit 6befbee5 by Bryce McKinlay Committed by Bryce McKinlay

parse.y (parser_check_super_interface): Fix error message grammar/order.

	* parse.y (parser_check_super_interface): Fix error message
	grammar/order.

From-SVN: r50955
parent 66c17b64
2002-03-18 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* parse.y (parser_check_super_interface): Fix error message
grammar/order.
2002-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* jcf-parse.c (get_constant): Delete unused variables.
......
......@@ -5070,12 +5070,12 @@ parser_check_super_interface (super_decl, this_decl, this_wfl)
if (!CLASS_INTERFACE (super_decl))
{
parse_error_context
(this_wfl, "Can't use %s `%s' to implement/extend %s `%s'",
(TYPE_ARRAY_P (super_type) ? "array" : "class"),
IDENTIFIER_POINTER (DECL_NAME (super_decl)),
(this_wfl, "%s `%s' can't implement/extend %s `%s'",
(CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (this_decl))) ?
"interface" : "class"),
IDENTIFIER_POINTER (DECL_NAME (this_decl)));
"Interface" : "Class"),
IDENTIFIER_POINTER (DECL_NAME (this_decl)),
(TYPE_ARRAY_P (super_type) ? "array" : "class"),
IDENTIFIER_POINTER (DECL_NAME (super_decl)));
return 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment