diff options
author | Takashi Kokubun <[email protected]> | 2024-04-17 12:00:03 -0700 |
---|---|---|
committer | <[email protected]> | 2024-04-17 15:00:03 -0400 |
commit | 4cc58ea0b865f2fd20f1e881ddbd4c4fab0b072c () | |
tree | 1587d79e55cc448e08ae30f8c4a3175f8195b1cc /yjit.h | |
parent | ca764062b06f1bb587048bcf374b25a0903ca9e7 (diff) |
YJIT: Optimize local variables when EP == BP (#10487)
-rw-r--r-- | yjit.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -48,6 +48,7 @@ void rb_yjit_tracing_invalidate_all(void); void rb_yjit_show_usage(int help, int highlight, unsigned int width, int columns); void rb_yjit_lazy_push_frame(const VALUE *pc); void rb_yjit_invalidate_no_singleton_class(VALUE klass); #else // !USE_YJIT @@ -71,6 +72,7 @@ static inline void rb_yjit_constant_ic_update(const rb_iseq_t *const iseq, IC ic static inline void rb_yjit_tracing_invalidate_all(void) {} static inline void rb_yjit_lazy_push_frame(const VALUE *pc) {} static inline void rb_yjit_invalidate_no_singleton_class(VALUE klass) {} #endif // #if USE_YJIT |