* io.c (rb_f_backquote): fix a GC problem on

IA64 with gcc 4.0.3 20051216 (prerelease) -O3.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2005-12-19 17:11:20 +00:00
parent a88e840f77
commit 0e1642ebbf
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Dec 20 01:46:48 2005 Tanaka Akira <akr@m17n.org>
* io.c (rb_f_backquote): fix a GC problem on
IA64 with gcc 4.0.3 20051216 (prerelease) -O3.
Mon Dec 19 23:32:39 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* Makefile.in (XCFLAGS): separated as well as win32/Makefile.sub.

3
io.c
View File

@ -4373,7 +4373,8 @@ rb_f_readlines(int argc, VALUE *argv)
static VALUE
rb_f_backquote(VALUE obj, VALUE str)
{
VALUE port, result;
volatile VALUE port;
VALUE result;
OpenFile *fptr;
SafeStringValue(str);