Commit a3f406ce by Tom Tromey Committed by Tom Tromey

xref.h (enum): Removed trailing comma.

	* xref.h (enum): Removed trailing comma.
	* parse.y (resolve_qualified_expression_name): Added missing
	`break'.

From-SVN: r26546
parent 3d79e10b
1999-04-19 Tom Tromey <tromey@cygnus.com>
* xref.h (enum): Removed trailing comma.
* parse.y (resolve_qualified_expression_name): Added missing
`break'.
Thu Apr 15 13:08:03 1999 Anthony Green <green@cygnus.com> Thu Apr 15 13:08:03 1999 Anthony Green <green@cygnus.com>
* gjavah.c: New prototypes for java_float_finite and * gjavah.c: New prototypes for java_float_finite and
......
...@@ -2226,7 +2226,7 @@ static const short yycheck[] = { 3, ...@@ -2226,7 +2226,7 @@ static const short yycheck[] = { 3,
#define YYPURE 1 #define YYPURE 1
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */ /* -*-C-*- Note some compilers choke on comments on `#line' lines. */
#line 3 "/usr/lib/bison.simple" #line 3 "/x1/java/install/share/bison.simple"
/* Skeleton output parser for bison, /* Skeleton output parser for bison,
Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc. Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
...@@ -2419,7 +2419,7 @@ __yy_memcpy (char *to, char *from, int count) ...@@ -2419,7 +2419,7 @@ __yy_memcpy (char *to, char *from, int count)
#endif #endif
#endif #endif
#line 196 "/usr/lib/bison.simple" #line 196 "/x1/java/install/share/bison.simple"
/* The user can define YYPARSE_PARAM as the name of an argument to be passed /* The user can define YYPARSE_PARAM as the name of an argument to be passed
into yyparse. The argument should have type void *. into yyparse. The argument should have type void *.
...@@ -4678,7 +4678,7 @@ case 493: ...@@ -4678,7 +4678,7 @@ case 493:
break;} break;}
} }
/* the action file gets copied in in place of this dollarsign */ /* the action file gets copied in in place of this dollarsign */
#line 498 "/usr/lib/bison.simple" #line 498 "/x1/java/install/share/bison.simple"
yyvsp -= yylen; yyvsp -= yylen;
yyssp -= yylen; yyssp -= yylen;
...@@ -8922,6 +8922,7 @@ resolve_qualified_expression_name (wfl, found_decl, where_found, type_found) ...@@ -8922,6 +8922,7 @@ resolve_qualified_expression_name (wfl, found_decl, where_found, type_found)
default: default:
/* Fix for -Wall Just go to the next statement. Don't /* Fix for -Wall Just go to the next statement. Don't
continue */ continue */
break;
} }
/* If we fall here, we weren't processing a (static) function call. */ /* If we fall here, we weren't processing a (static) function call. */
...@@ -12343,6 +12344,7 @@ patch_unaryop (node, wfl_op) ...@@ -12343,6 +12344,7 @@ patch_unaryop (node, wfl_op)
/* 15.14.2 Prefix Decrement Operator -- */ /* 15.14.2 Prefix Decrement Operator -- */
case PREDECREMENT_EXPR: case PREDECREMENT_EXPR:
decl = strip_out_static_field_access_decl (op); decl = strip_out_static_field_access_decl (op);
/* We really should have a JAVA_ARRAY_EXPR to avoid this */
if (!JDECL_P (decl) if (!JDECL_P (decl)
&& TREE_CODE (decl) != COMPONENT_REF && TREE_CODE (decl) != COMPONENT_REF
&& !(flag_emit_class_files && TREE_CODE (decl) == ARRAY_REF) && !(flag_emit_class_files && TREE_CODE (decl) == ARRAY_REF)
......
...@@ -6321,6 +6321,7 @@ resolve_qualified_expression_name (wfl, found_decl, where_found, type_found) ...@@ -6321,6 +6321,7 @@ resolve_qualified_expression_name (wfl, found_decl, where_found, type_found)
default: default:
/* Fix for -Wall Just go to the next statement. Don't /* Fix for -Wall Just go to the next statement. Don't
continue */ continue */
break;
} }
/* If we fall here, we weren't processing a (static) function call. */ /* If we fall here, we weren't processing a (static) function call. */
......
...@@ -30,7 +30,7 @@ void expand_xref PROTO ((tree)); ...@@ -30,7 +30,7 @@ void expand_xref PROTO ((tree));
/* flag_emit_xref range of possible values. */ /* flag_emit_xref range of possible values. */
enum { enum {
XREF_NONE = 0, XREF_NONE = 0
}; };
/* Lookup table to be used with the value of flag_emit_xref */ /* Lookup table to be used with the value of flag_emit_xref */
......
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