diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-14 03:04:14 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-14 03:04:14 +0000 |
commit | 61c581a5ac4dfff50be411abfbc0b6fd5d0708c4 (patch) | |
tree | 3aef929c7a10985c1e0b4b724d9f9c71ec29b05b | |
parent | 1d920d0dce52eeda2284bbf2ec84e44be5d23433 (diff) | |
download | ruby-61c581a5ac4dfff50be411abfbc0b6fd5d0708c4.tar.gz ruby-61c581a5ac4dfff50be411abfbc0b6fd5d0708c4.tar.xz ruby-61c581a5ac4dfff50be411abfbc0b6fd5d0708c4.zip |
* marshal.c (r_object0): fix a GC problem for reading a bignum on
IA64 with gcc 3.3.5 (Debian 1:3.3.5-13).
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | marshal.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Wed Dec 14 12:01:26 2005 Tanaka Akira <akr@m17n.org> + + * marshal.c (r_object0): fix a GC problem for reading a bignum on + IA64 with gcc 3.3.5 (Debian 1:3.3.5-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 @@ -1038,7 +1038,7 @@ r_object0(struct load_arg *arg, VALUE proc, int *ivp, VALUE extmod) { long len; BDIGIT *digits; - VALUE data; + volatile VALUE data; NEWOBJ(big, struct RBignum); OBJSETUP(big, rb_cBignum, T_BIGNUM); |