From ab83abfc5eb07b82e397f4be7c5730eff647b142 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 12 Dec 2005 16:47:17 +0000 Subject: * array.c (rb_ary_diff): fix a GC problem on IA64 with gcc 3.3.5 (Debian 1:3.3.5-13). When rb_ary_push is called, there was no register which contains `hash' but `&RHASH(hash)->tbl' instead. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 2e3992d7f..7e109e70c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Tue Dec 13 01:44:16 2005 Tanaka Akira + + * array.c (rb_ary_diff): fix a GC problem on IA64 with + gcc 3.3.5 (Debian 1:3.3.5-13). + When rb_ary_push is called, there was no register + which contains + `hash' but `&RHASH(hash)->tbl' instead. + Tue Dec 13 00:08:09 2005 Tanaka Akira * sprintf.c (rb_str_format): fix a GC problem. -- cgit