Wed Aug 16 11:45:11 1995 Ian Lance Taylor <ian@cygnus.com>
+ * ldgram.y: Tweak casesymlist to avoid bison errors.
+
* lexsup.c (parse_args): Accept -h as a synonym for --soname, for
Solaris compatibility.
%type <etree> exp opt_exp_with_type mustbe_exp opt_at
%type <integer> fill_opt
-%type <name> memspec_opt
+%type <name> memspec_opt casesymlist
%token <integer> INT
%token <name> NAME LNAME
%type <integer> length
;
casesymlist:
- /* empty */
+ /* empty */ { $$ = NULL; }
| NAME
| casesymlist ',' NAME
;