aboutsummaryrefslogtreecommitdiffstats
path: root/internal.h
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-21 20:59:39 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-21 20:59:39 +0000
commit54c1f479301f71156645059161e64b50ab271ad8 (patch)
tree3b78b9e51f291cf868889bd79676d1a60e028eac /internal.h
parentfe120ac1f118eb009acb76d2d7a7d6934215dcd4 (diff)
downloadruby-54c1f479301f71156645059161e64b50ab271ad8.tar.gz
* include/ruby/ruby.h (LIKELY): moved from internal.h.
* include/ruby/ruby.h (UNLIKELY): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/internal.h b/internal.h
index f3767110cc..371cb1b83a 100644
--- a/internal.h
+++ b/internal.h
@@ -23,15 +23,6 @@ extern "C" {
#endif
#endif
-/* likely */
-#if __GNUC__ >= 3
-#define LIKELY(x) (__builtin_expect(!!(x), 1))
-#define UNLIKELY(x) (__builtin_expect(!!(x), 0))
-#else /* __GNUC__ >= 3 */
-#define LIKELY(x) (x)
-#define UNLIKELY(x) (x)
-#endif /* __GNUC__ >= 3 */
-
#ifndef __has_attribute
# define __has_attribute(x) 0
#endif