Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 7ea9c672a4791a12f1bc5dd551f676234519016c
https://github.com/Perl/perl5/commit/7ea9c672a4791a12f1bc5dd551f676234519016c
Author: Karl Williamson <[email protected]>
Date: 2022-06-10 (Fri, 10 Jun 2022)
Changed paths:
M embed.fnc
M embed.h
M proto.h
M sv.h
M sv_inline.h
Log Message:
-----------
SvGETMAGIC: evaluate its argument just once
This required making it into an inline function. I tried using
STMT_START{ ... } STMT_END, which should work since it has a void
return, but there were places where it was used in a comma operator, and
those did not compile.