summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index dacde9e55e..294369504a 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -537,12 +537,8 @@ vm_getivar(VALUE obj, ID id, IC ic, rb_call_info_t *ci, int is_attr)
}
return val;
}
- else {
- return rb_ivar_get(obj, id);
- }
-#else
+#endif /* USE_IC_FOR_IVAR */
return rb_ivar_get(obj, id);
-#endif
}
static inline void
@@ -587,10 +583,8 @@ vm_setivar(VALUE obj, ID id, VALUE val, IC ic, rb_call_info_t *ci, int is_attr)
/* fall through */
}
}
+#endif /* USE_IC_FOR_IVAR */
rb_ivar_set(obj, id, val);
-#else
- rb_ivar_set(obj, id, val);
-#endif
}
static VALUE