summaryrefslogtreecommitdiff
path: root/regen/embed.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-09-14 14:33:16 -0600
committerKarl Williamson <khw@cpan.org>2019-09-15 10:39:56 -0600
commitfe4f8666d6b1432d30f0b3090a30becb8d2e13c3 (patch)
treed6ea2504874444069126af6ec9ab8b2bdcf20804 /regen/embed.pl
parent917b9b5460600d15e64f9feb530fda5d54f11cf4 (diff)
downloadperl-fe4f8666d6b1432d30f0b3090a30becb8d2e13c3.tar.gz
regen/embed.pl: Update a branch test
The two flags are now mutually exclusive, so no need to test for both.
Diffstat (limited to 'regen/embed.pl')
-rwxr-xr-xregen/embed.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/regen/embed.pl b/regen/embed.pl
index 8546051a75..04200273c1 100755
--- a/regen/embed.pl
+++ b/regen/embed.pl
@@ -90,7 +90,7 @@ my ($embed, $core, $ext, $api) = setup_embed();
my $has_context = ( $flags !~ /T/ );
my $never_returns = ( $flags =~ /r/ );
my $binarycompat = ( $flags =~ /b/ );
- my $commented_out = ( ! $binarycompat && $flags =~ /m/ );
+ my $commented_out = ( $flags =~ /m/ );
my $is_malloc = ( $flags =~ /a/ );
my $can_ignore = ( $flags !~ /R/ ) && ( $flags !~ /P/ ) && !$is_malloc;
my @names_of_nn;