diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-09 05:49:31 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-09 05:49:31 +0000 |
commit | 9b739655594db0f5e5ba1ea71b696249232d06f7 (patch) | |
tree | 272b472bfdb4aec64705849f54726f5b943f39cb /eval.c | |
parent | e4c120fcdb3c765dd9f2b54b52bd6e610c773493 (diff) | |
download | ruby-9b739655594db0f5e5ba1ea71b696249232d06f7.tar.gz ruby-9b739655594db0f5e5ba1ea71b696249232d06f7.tar.xz ruby-9b739655594db0f5e5ba1ea71b696249232d06f7.zip |
* eval.c (scope_dup): add volatile not to optimize tbl.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7744,7 +7744,7 @@ static void scope_dup(scope) struct SCOPE *scope; { - ID *tbl; + volatile ID *tbl; VALUE *vars; scope->flags |= SCOPE_DONT_RECYCLE; |