mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
values doesn't needs to be volatile since it is passed to rb_struct_initialize.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a8b4677b14
commit
29dcf02239
1 changed files with 1 additions and 1 deletions
|
@ -1248,7 +1248,7 @@ r_object0(struct load_arg *arg, int *ivp, VALUE extmod)
|
|||
case TYPE_STRUCT:
|
||||
{
|
||||
VALUE klass, mem;
|
||||
volatile VALUE values;
|
||||
VALUE values;
|
||||
volatile long i; /* gcc 2.7.2.3 -O2 bug?? */
|
||||
long len;
|
||||
ID slot;
|
||||
|
|
Loading…
Reference in a new issue