Description
As of #83992, we're now vectorizing a set like [^Aa]
, but we're doing so with IndexOfAnyValues
when we could instead do so with IndexOfAnyExcept('A', 'a')
. IndexOfAnyValues will end up using an implementation that eventually delegates there, but we can skip the intermedaries an additional code gen.