summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
-rw-r--r--vm_core.h9
1 files changed, 0 insertions, 9 deletions
@@ -97,15 +97,6 @@
#endif /* OPT_STACK_CACHING */
#endif /* OPT_CALL_THREADED_CODE */
-/* 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 */
-
typedef unsigned long rb_num_t;
/* iseq data type */