suppress warning

* iseq.c (rb_iseq_compile_with_option): suppress
  maybe-uninitialized warning by gcc 4.8.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54217 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-03-21 13:53:25 +00:00
parent 51c4ffa45b
commit 3176a634ca

2
iseq.c
View File

@ -627,7 +627,7 @@ rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE absolute_path, VALUE li
const INITIALIZED VALUE label = parent ?
parent->body->location.label :
rb_fstring_cstr("<compiled>");
VALUE parser = rb_parser_new();
const INITIALIZED VALUE parser = rb_parser_new();
rb_parser_mild_error(parser);
th->base_block = base_block;