vm_insnhelper.c: INLINE condition

* vm_insnhelper.c (INLINE): works with __NO_INLINE__ only,
  __clang__ is not the point.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-04-24 12:01:00 +00:00
Родитель 5f9cf734f5
Коммит 5bd78d64b7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,7 @@
/* control stack frame */
#undef INLINE
#if defined __GNUC__ && !defined __NO_INLINE__ && !defined __clang__
#if defined __GNUC__ && !defined __NO_INLINE__
#define INLINE inline
#else
#define INLINE static inline