From aabd38598457d2af3bb666ff34edc0e850b7b441 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 19 Dec 2005 17:11:20 +0000 Subject: * io.c (rb_f_backquote): fix a GC problem on IA64 with gcc 4.0.3 20051216 (prerelease) -O3. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'io.c') diff --git a/io.c b/io.c index 826285842..626e9b8c6 100644 --- a/io.c +++ b/io.c @@ -4513,7 +4513,8 @@ static VALUE rb_f_backquote(obj, str) VALUE obj, str; { - VALUE port, result; + volatile VALUE port; + VALUE result; OpenFile *fptr; SafeStringValue(str); -- cgit