From 92b81dc5972607f745d26b8a7a83166ff0fa354b Mon Sep 17 00:00:00 2001 From: mame Date: Fri, 5 Jan 2018 08:59:22 +0000 Subject: make rb_iseq_new* accept rb_ast_body_t instead of NODE* git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61609 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- template/prelude.c.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'template') diff --git a/template/prelude.c.tmpl b/template/prelude.c.tmpl index b144f8ab0a..b12a27059c 100644 --- a/template/prelude.c.tmpl +++ b/template/prelude.c.tmpl @@ -165,7 +165,7 @@ prelude_eval(VALUE code, VALUE name, int line) rb_ast_dispose(ast); rb_exc_raise(rb_errinfo()); } - rb_iseq_eval(rb_iseq_new_with_opt(ast->body.root, name, name, Qnil, INT2FIX(line), + rb_iseq_eval(rb_iseq_new_with_opt(&ast->body, name, name, Qnil, INT2FIX(line), NULL, ISEQ_TYPE_TOP, &optimization)); rb_ast_dispose(ast); } -- cgit v1.2.3