Skip to content

Commit

Permalink
bison now needs an explicit type specified for the result of a mid ru…
Browse files Browse the repository at this point in the history
…le action
  • Loading branch information
itsmonktastic committed Sep 16, 2011
1 parent 09ce5b7 commit 45cb54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Eden/yacc.y
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ declare_relation:
identifier tilde_gt '[' id_list_opt ']' ';'
{ $$ = code_related_by($1); }
/* related_by_runtimelhs by [Ash] */
| '`' expr '`' { $$ = $2; code(lookup_address); }
| '`' expr '`' { $<inst>$ = $2; code(lookup_address); }
tilde_gt '[' id_list_opt ']' ';'
{ $$ = code_related_by_runtimelhs(); }
;
Expand Down

0 comments on commit 45cb54f

Please sign in to comment.