ruby-changes:33216
From: normal <ko1@a...>
Date: Sun, 9 Mar 2014 06:44:39 +0900 (JST)
Subject: [ruby-changes:33216] normal:r45295 (trunk): variable.c (struct global_variable): shrink by 8 bytes on 64-bit
normal 2014-03-09 06:44:24 +0900 (Sun, 09 Mar 2014) New Revision: 45295 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45295 Log: variable.c (struct global_variable): shrink by 8 bytes on 64-bit Modified files: trunk/ChangeLog trunk/variable.c Index: ChangeLog =================================================================== --- ChangeLog (revision 45294) +++ ChangeLog (revision 45295) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Mar 9 06:42:40 2014 Eric Wong <e@8...> + + * variable.c (struct global_variable): shrink by 8 bytes on 64-bit + Sat Mar 8 17:42:51 2014 Eric Wong <e@8...> * vm.c (add_opt_method): cleanup to use rb_method_entry_at Index: variable.c =================================================================== --- variable.c (revision 45294) +++ variable.c (revision 45295) @@ -424,11 +424,11 @@ struct trace_var { https://github.com/ruby/ruby/blob/trunk/variable.c#L424 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; }; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/