From f8659dfd94d3f05f365996c68f2f1a78b1e7cbe3 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Fri, 8 Dec 2017 00:45:23 +0000 Subject: [PATCH] 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 --- parse.y | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parse.y b/parse.y index 1fc2a73aac..e84c3002ae 100644 --- a/parse.y +++ b/parse.y @@ -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);