From 956d35e2d00e331ad2bbf601db5f05bbf7097be8 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 6 Dec 2018 10:02:04 +0000 Subject: refix of r66200 Though internal.h has the prototype, it still shows symbol lookup error... https://rubyci.org/logs/rubyci.s3.amazonaws.com/icc-x64/ruby-trunk/log/20181206T050002Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/ruby/ruby.h') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 9e9423e810..649ece290a 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -2163,6 +2163,11 @@ rb_array_const_ptr(VALUE a) return rb_array_const_ptr_transient(a); } +/* fix related to r66200 */ +#ifdef __INTEL_COMPILER +VALUE *rb_ary_ptr_use_start(VALUE ary); +#endif + /* internal function. do not use this function */ static inline VALUE * rb_array_ptr_use_start(VALUE a, int allow_transient) -- cgit v1.2.3