The expression my_list[-1] gets specialized to BINARY_SUBSCR_LIST_INT every time, then it gets deoptimized every time
This leads to 31%ish of BINARY_SUBSCR_LIST_INT executions being misses (on some programs anyway). Edit: this stat was probably not accurate.
Should be an easy fix.
Linked PRs
The expression
my_list[-1]gets specialized toBINARY_SUBSCR_LIST_INTevery time, then it gets deoptimized every timeThis leads to 31%ish ofEdit: this stat was probably not accurate.BINARY_SUBSCR_LIST_INTexecutions being misses (on some programs anyway).Should be an easy fix.
Linked PRs