Fix JIT crash with large number of match/switch arms (#8961) Switch statements may generate a large number of exit points. Once the max number of exit points is reached, get_exit_addr()
Fix JIT crash with large number of match/switch arms (#8961) Switch statements may generate a large number of exit points. Once the max number of exit points is reached, get_exit_addr() returns NULL. This was not checked, and this resulted in a jump table with some 0 addresses.
show more ...
|