mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00
* insns.def (opt_case_dispatch): need cast.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@25815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
44895d6ea2
commit
f4d1fd3175
3 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Nov 17 16:01:02 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* insns.def (opt_case_dispatch): need cast.
|
||||||
|
|
||||||
Tue Nov 17 15:46:23 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
Tue Nov 17 15:46:23 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* dir.c (READDIR): this branch doesn't have rb_w32_readdir_with_enc().
|
* dir.c (READDIR): this branch doesn't have rb_w32_readdir_with_enc().
|
||||||
|
|
|
@ -1251,7 +1251,7 @@ opt_case_dispatch
|
||||||
key, -1
|
key, -1
|
||||||
};
|
};
|
||||||
|
|
||||||
st_foreach(RHASH_TBL(hash), opt_case_dispatch_i, &arg);
|
st_foreach(RHASH_TBL(hash), opt_case_dispatch_i, (st_data_t)&arg);
|
||||||
|
|
||||||
if (arg.label != -1) {
|
if (arg.label != -1) {
|
||||||
JUMP(arg.label);
|
JUMP(arg.label);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#define RUBY_VERSION "1.9.1"
|
#define RUBY_VERSION "1.9.1"
|
||||||
#define RUBY_PATCHLEVEL 337
|
#define RUBY_PATCHLEVEL 338
|
||||||
#define RUBY_VERSION_MAJOR 1
|
#define RUBY_VERSION_MAJOR 1
|
||||||
#define RUBY_VERSION_MINOR 9
|
#define RUBY_VERSION_MINOR 9
|
||||||
#define RUBY_VERSION_TEENY 1
|
#define RUBY_VERSION_TEENY 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue