mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* re.c (rb_reg_regcomp): fix a GC problem on x86_64 with
gcc 3.3.5 (Debian 1:3.3.5-13). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9684 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
682292ea7d
commit
51f4d6645b
2 changed files with 7 additions and 2 deletions
|
@ -1,9 +1,13 @@
|
||||||
|
Tue Dec 13 12:23:47 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
|
* re.c (rb_reg_regcomp): fix a GC problem on x86_64 with
|
||||||
|
gcc 3.3.5 (Debian 1:3.3.5-13).
|
||||||
|
|
||||||
Tue Dec 13 01:44:16 2005 Tanaka Akira <akr@m17n.org>
|
Tue Dec 13 01:44:16 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* array.c (rb_ary_diff): fix a GC problem on IA64 with
|
* array.c (rb_ary_diff): fix a GC problem on IA64 with
|
||||||
gcc 3.3.5 (Debian 1:3.3.5-13).
|
gcc 3.3.5 (Debian 1:3.3.5-13).
|
||||||
When rb_ary_push is called, there was no register
|
When rb_ary_push is called, there was no register which contains
|
||||||
which contains
|
|
||||||
`hash' but `&RHASH(hash)->tbl' instead.
|
`hash' but `&RHASH(hash)->tbl' instead.
|
||||||
|
|
||||||
Tue Dec 13 00:08:09 2005 Tanaka Akira <akr@m17n.org>
|
Tue Dec 13 00:08:09 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
1
re.c
1
re.c
|
@ -1384,6 +1384,7 @@ static VALUE reg_cache;
|
||||||
VALUE
|
VALUE
|
||||||
rb_reg_regcomp(VALUE str)
|
rb_reg_regcomp(VALUE str)
|
||||||
{
|
{
|
||||||
|
volatile VALUE save_str = str;
|
||||||
if (reg_cache && RREGEXP(reg_cache)->len == RSTRING(str)->len
|
if (reg_cache && RREGEXP(reg_cache)->len == RSTRING(str)->len
|
||||||
&& case_cache == ruby_ignorecase
|
&& case_cache == ruby_ignorecase
|
||||||
&& kcode_cache == reg_kcode
|
&& kcode_cache == reg_kcode
|
||||||
|
|
Loading…
Reference in a new issue