-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* iseq.h (struct iseq_compile_data): use struct rb_id_table
instead of st_table. * iseq.c (prepare_iseq_build): don't allocate ivar_cache_table until it has at least one element. * iseq.c (compile_data_free): free ivar_cache_table only if it is allocated. * compile.c (get_ivar_ic_value): allocate if the table is not allocated yet. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
4 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
Sun May 15 03:13:01 2016 NARUSE, Yui <[email protected]> | ||
|
||
* iseq.h (struct iseq_compile_data): use struct rb_id_table | ||
instead of st_table. | ||
|
||
* iseq.c (prepare_iseq_build): don't allocate ivar_cache_table | ||
until it has at least one element. | ||
|
||
* iseq.c (compile_data_free): free ivar_cache_table only if it | ||
is allocated. | ||
|
||
* compile.c (get_ivar_ic_value): allocate if the table is not | ||
allocated yet. | ||
|
||
Sat May 14 09:04:34 2016 Nobuyoshi Nakada <[email protected]> | ||
|
||
* lib/mkmf.rb (pkg_config): use xsystem consistently to set up | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters