summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_core.h b/vm_core.h
index 8c6456abda..89a242acc6 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -410,18 +410,18 @@ struct rb_iseq_struct {
#if USE_LAZY_LOAD
const rb_iseq_t *rb_iseq_complete(const rb_iseq_t *iseq);
+#endif
static inline const rb_iseq_t *
rb_iseq_check(const rb_iseq_t *iseq)
{
+#if USE_LAZY_LOAD
if (iseq->body == NULL) {
rb_iseq_complete((rb_iseq_t *)iseq);
}
+#endif
return iseq;
}
-#else
-#define rb_iseq_check(iseq) iseq
-#endif
enum ruby_special_exceptions {
ruby_error_reenter,