summaryrefslogtreecommitdiff
path: root/marshal.c
diff options
context:
space:
mode:
Diffstat (limited to 'marshal.c')
-rw-r--r--marshal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/marshal.c b/marshal.c
index 9d4808b8ab..82d6907276 100644
--- a/marshal.c
+++ b/marshal.c
@@ -692,7 +692,8 @@ r_object(arg)
case TYPE_ARRAY:
{
- volatile int len = r_long(arg);
+ volatile int len = r_long(arg); /* gcc 2.7.2.3 -O2 bug?? */
+
v = rb_ary_new2(len);
r_regist(v, arg);
while (len--) {