parse.y Fix compile error

ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2017-12-08 00:45:23 +00:00
parent c6b31b76ee
commit f8659dfd94

View File

@ -1453,10 +1453,11 @@ stmt : keyword_alias fitem {SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);} fitem
| stmt modifier_rescue stmt
{
/*%%%*/
NODE *resq;
YYLTYPE location;
location.first_loc = @2.first_loc;
location.last_loc = @3.last_loc;
NODE *resq = new_resbody(0, remove_begin($3), 0, &location);
resq = new_resbody(0, remove_begin($3), 0, &location);
$$ = new_rescue(remove_begin($1), resq, 0, &@$);
/*%
$$ = dispatch2(rescue_mod, $1, $3);