diff options
author | ngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-24 11:08:30 +0000 |
---|---|---|
committer | ngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-24 11:08:30 +0000 |
commit | 4e062d14d205c6a23c59829aa6b2a570d4bfea35 (patch) | |
tree | 0e8dfef8964b9638a5adcae152e84a294e259657 | |
parent | fe5f47a6ee2dba7993157f54488e7dd6102bc1b5 (diff) |
* include/ruby/defines.h (ALWAYS_INLINE): Add alternative definition.
Fix compile error with compilers that do not have force inline
attribute, including old version of fcc on Solaris 10.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | include/ruby/defines.h | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,9 @@ +Wed Aug 24 20:07:57 2016 Naohisa Goto <[email protected]> + + * include/ruby/defines.h (ALWAYS_INLINE): Add alternative definition. + Fix compile error with compilers that do not have force inline + attribute, including old version of fcc on Solaris 10. + Wed Aug 24 16:56:26 2016 NARUSE, Yui <[email protected]> * .gdbinit: follow r55766's VM change. diff --git a/include/ruby/defines.h b/include/ruby/defines.h index 610fbf4417..89e549ec19 100644 --- a/include/ruby/defines.h +++ b/include/ruby/defines.h @@ -45,6 +45,9 @@ extern "C" { #ifndef NOINLINE # define NOINLINE(x) x #endif +#ifndef ALWAYS_INLINE +# define ALWAYS_INLINE(x) x +#endif #ifndef ERRORFUNC # define HAVE_ATTRIBUTE_ERRORFUNC 0 # define ERRORFUNC(mesg, x) x |