From 699608487d2ff09bb5c610a9d1e6e13f5bd2a25e Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Thu, 10 Dec 2020 07:36:55 -0800 Subject: [PATCH] Make getinstancevariable a leaf instruction It can no longer issue a warning. --- insns.def | 2 -- 1 file changed, 2 deletions(-) diff --git a/insns.def b/insns.def index e39037c039..2bdb2d5d7a 100644 --- a/insns.def +++ b/insns.def @@ -210,8 +210,6 @@ getinstancevariable (ID id, IVC ic) () (VALUE val) -/* "instance variable not initialized" warning can be hooked. */ -// attr bool leaf = false; /* has rb_warning() */ { val = vm_getinstancevariable(GET_ISEQ(), GET_SELF(), id, ic); }