aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-24 12:01:00 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-24 12:01:00 +0000
commit5bd78d64b7c2ababf18c6e61575a7d7c854d2023 (patch)
treeff310f170b40cfa64e11c3fa05eb0273d0c6d880
parent5f9cf734f57684dd9aa5660b4e04650a7ead40e2 (diff)
downloadruby-5bd78d64b7c2ababf18c6e61575a7d7c854d2023.tar.gz
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
-rw-r--r--vm_insnhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 9359e2726c..448956c8af 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -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