1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

variable.c (struct global_variable): shrink by 8 bytes on 64-bit

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
normal 2014-03-08 21:44:24 +00:00
parent e38d95497f
commit eb227b25fa
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun Mar 9 06:42:40 2014 Eric Wong <e@80x24.org>
* variable.c (struct global_variable): shrink by 8 bytes on 64-bit
Sat Mar 8 17:42:51 2014 Eric Wong <e@80x24.org>
* vm.c (add_opt_method): cleanup to use rb_method_entry_at

View file

@ -424,11 +424,11 @@ struct trace_var {
struct global_variable {
int counter;
int block_trace;
void *data;
gvar_getter_t *getter;
gvar_setter_t *setter;
gvar_marker_t *marker;
int block_trace;
struct trace_var *trace;
};