Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: e616482ebbb5b0eb7ab5edca3089ddf13650074b https://github.com/Perl/perl5/commit/e616482ebbb5b0eb7ab5edca3089ddf13650074b Author: Richard Leach <richardle...@users.noreply.github.com> Date: 2022-09-22 (Thu, 22 Sep 2022)
Changed paths: M regcomp.c Log Message: ----------- regcomp.c - use _simple functions where apparently safe to do so `av_push`, `av_store`, and `av_fetch` have been changed to their inline `_simple` variants in a number of places. No test failures have resulted from these changes. The remaining uses of the full-fat functions are not suitable to change because either the AVs have magic, or existing tests show that the `key` parameter is not > -1 when that is a pre-requisite of a replacement inline function.