Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 6f880c1acc64761e1d30381f4c8a3f6f6f87b544 https://github.com/Perl/perl5/commit/6f880c1acc64761e1d30381f4c8a3f6f6f87b544 Author: TAKAI Kousuke <62541129+t-...@users.noreply.github.com> Date: 2023-11-27 (Mon, 27 Nov 2023)
Changed paths: M pp.c Log Message: ----------- pp.c: Add dummy goto to silence -Wunused-label warning in pp_divide The label "ret" was only referred in PERL_TRY_UV_DIVIDE block which is not compiled on typical 32-bit build, thus it used to trigger a warning like "label ‘ret’ defined but not used". Added goto will be optimized out and should not incur any runtime overhead.