mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* compile.c (new_label_body): missed backporting r54548 in r54698.
this fixes randomly test failure introduced by r54698. cf. [Bug #12082] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@54799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ca68da226f
commit
cf23ad429d
3 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Apr 27 22:16:04 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* compile.c (new_label_body): missed backporting r54548 in r54698.
|
||||
this fixes randomly test failure introduced by r54698.
|
||||
cf. [Bug #12082]
|
||||
|
||||
Tue Apr 26 13:38:31 2016 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* README.EXT{,.ja}: `nul` should be uppercase.
|
||||
|
|
|
@ -929,6 +929,8 @@ new_label_body(rb_iseq_t *iseq, long line)
|
|||
labelobj->label_no = iseq->compile_data->label_no++;
|
||||
labelobj->sc_state = 0;
|
||||
labelobj->sp = -1;
|
||||
labelobj->set = 0;
|
||||
labelobj->rescued = LABEL_RESCUE_NONE;
|
||||
return labelobj;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#define RUBY_VERSION "2.2.6"
|
||||
#define RUBY_RELEASE_DATE "2016-04-26"
|
||||
#define RUBY_PATCHLEVEL 320
|
||||
#define RUBY_RELEASE_DATE "2016-04-27"
|
||||
#define RUBY_PATCHLEVEL 321
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2016
|
||||
#define RUBY_RELEASE_MONTH 4
|
||||
#define RUBY_RELEASE_DAY 26
|
||||
#define RUBY_RELEASE_DAY 27
|
||||
|
||||
#include "ruby/version.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue