Branch: refs/heads/yves/fix_setjmp_warning_doeval_compile
Home: https://github.com/Perl/perl5
Commit: 03f1be26db502faa8e49fd96208cac32a6a68d57
https://github.com/Perl/perl5/commit/03f1be26db502faa8e49fd96208cac32a6a68d57
Author: Yves Orton <[email protected]>
Date: 2022-09-05 (Mon, 05 Sep 2022)
Changed paths:
M pp_ctl.c
Log Message:
-----------
pp_ctl.c - move JMPENV_PUSH to a function similar to S_try_yyparse
Both of these are private to pp_ctl.c and not listed in embed.c
This fixes a cryptic warning about a variable being used across
setjmp which turns out to be evalcv. By wrapping the JMPENV_PUSH
logic in a light wrapper these issues are moved one layer down
the stack and avoided.