You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PERL_RC_STACK builds were giving this warning:
pp_hot.c:3147:21: warning: variable 'i' set but not used
[-Wunused-but-set-variable]
which was true: under that build, the i variable was being set but
not used in a couple of places (it's value is only used on
non-PERL_RC_STACK builds).
So avoid that var under PERL_RC_STACK builds.
0 commit comments